Initial commit from v0

This commit is contained in:
v0
2026-03-20 00:11:55 +00:00
commit a0a04d3f87
87 changed files with 8419 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { Header } from "@/components/header"
import { Hero } from "@/components/hero"
import { Services } from "@/components/services"
import { Features } from "@/components/features"
import { Process } from "@/components/process"
import { Contact } from "@/components/contact"
import { Footer } from "@/components/footer"
export default function Home() {
return (
<main className="min-h-screen bg-background text-foreground overflow-x-hidden">
<Header />
<Hero />
<Services />
<Features />
<Process />
<Contact />
<Footer />
</main>
)
}