22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
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>
|
|
);
|
|
}
|