project init

This commit is contained in:
2025-12-01 02:29:08 +01:00
commit 78a0f6c646
106 changed files with 13132 additions and 0 deletions

25
frontend/app/page.tsx Normal file
View File

@@ -0,0 +1,25 @@
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>
)
}