Auth fertig erstellt. Aktuell läuft review durch KI

This commit is contained in:
2026-08-29 14:07:44 +02:00
commit 625d026f59
70 changed files with 17032 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import { createFileRoute } from '@tanstack/react-router'
import Header from '#/components/header.tsx'
import Hero from '#/components/hero.tsx'
import { Services } from '#/components/services.tsx'
import { Features } from '#/components/features.tsx'
import { Showcase } from '#/components/showcase.tsx'
import { Process } from '#/components/process.tsx'
import { Pricing } from '#/components/pricing.tsx'
import { Footer } from '#/components/footer.tsx'
export const Route = createFileRoute('/')({ component: Home })
function Home() {
return (
<div className="relative flex min-h-screen flex-col">
<Header />
<main className="flex-1">
<Hero />
<Services />
<Features />
<Showcase />
<Process />
<Pricing />
</main>
<Footer />
</div>
)
}