25 lines
758 B
TypeScript
25 lines
758 B
TypeScript
import { Hero } from "@/components/hero";
|
|
import { About } from "@/components/about";
|
|
import { Header } from "@/components/header";
|
|
import { Footer } from "@/components/footer";
|
|
import { Contact } from "@/components/contact";
|
|
import { Projects } from "@/components/projects";
|
|
import { TechStack } from "@/components/techstack";
|
|
import { Philosophy } from "@/components/philosophy";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="min-h-screen bg-background">
|
|
<Header />
|
|
<main>
|
|
<Hero />
|
|
<About />
|
|
<TechStack />
|
|
<Philosophy />
|
|
<Projects />
|
|
<Contact />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
} |