Update app/page.tsx
This commit is contained in:
parent
459620556d
commit
b06064f613
|
|
@ -0,0 +1,21 @@
|
||||||
|
import { Hero } from "@/components/hero";
|
||||||
|
import { Work } from "@/components/work";
|
||||||
|
import { Services } from "@/components/services";
|
||||||
|
import { About } from "@/components/about";
|
||||||
|
import { Clients } from "@/components/clients";
|
||||||
|
import { Contact } from "@/components/contact";
|
||||||
|
import { Footer } from "@/components/footer";
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
return (
|
||||||
|
<main className="min-h-screen">
|
||||||
|
<Hero />
|
||||||
|
<Work />
|
||||||
|
<Services />
|
||||||
|
<About />
|
||||||
|
<Clients />
|
||||||
|
<Contact />
|
||||||
|
<Footer />
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue