Initial commit from v0
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user