Initial import: was v0 exportiert hat
This commit is contained in:
commit
0194931215
167 changed files with 16465 additions and 0 deletions
23
app/page.tsx
Normal file
23
app/page.tsx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { Header } from '@/components/header'
|
||||
import { Hero } from '@/components/hero'
|
||||
import { AboutSection } from '@/components/about-section'
|
||||
import { ProjectsSection } from '@/components/projects-section'
|
||||
import { FocusSection } from '@/components/focus-section'
|
||||
import { PhilosophySection } from '@/components/philosophy-section'
|
||||
import { Footer } from '@/components/footer'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
<main>
|
||||
<Hero />
|
||||
<AboutSection />
|
||||
<ProjectsSection />
|
||||
<FocusSection />
|
||||
<PhilosophySection />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue