project init
This commit is contained in:
25
frontend/app/page.tsx
Normal file
25
frontend/app/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user