- 6 sections: Hero, About, Experience, Skills, Projects, Contact - MagicUI: Globe, Particles, Meteors, AnimatedList, IconCloud, BentoGrid - Dark mode support, scroll-triggered animations - Static export ready for deployment
22 lines
667 B
TypeScript
22 lines
667 B
TypeScript
import { ScrollProgress } from "@/components/ui/scroll-progress"
|
|
import { Hero } from "@/components/sections/hero"
|
|
import { About } from "@/components/sections/about"
|
|
import { Experience } from "@/components/sections/experience"
|
|
import { Skills } from "@/components/sections/skills"
|
|
import { Projects } from "@/components/sections/projects"
|
|
import { Contact } from "@/components/sections/contact"
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main className="relative">
|
|
<ScrollProgress className="fixed top-0 left-0 right-0 z-50" />
|
|
<Hero />
|
|
<About />
|
|
<Experience />
|
|
<Skills />
|
|
<Projects />
|
|
<Contact />
|
|
</main>
|
|
)
|
|
}
|