import { Hero, Journey, Projects, Stack, Contact } from "@/components/sections"
export default function Portfolio() {
const name = "Igor Braz"
const role = "Full Stack Developer"
return (
<div className="portfolio min-h-screen bg-background text-foreground">
<Hero name={name} role={role} />
<Journey />
<Projects />
<Stack />
<Contact />
</div>
)
}