Update app/page.tsx
This commit is contained in:
parent
499e94f58a
commit
8d576a4638
|
|
@ -0,0 +1,17 @@
|
||||||
|
import { Hero } from "@/components/hero";
|
||||||
|
import { Highlights } from "@/components/highlights";
|
||||||
|
import { Testimonials } from "@/components/testimonials";
|
||||||
|
import { CTA } from "@/components/cta";
|
||||||
|
import { Footer } from "@/components/footer";
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
return (
|
||||||
|
<main className="min-h-screen">
|
||||||
|
<Hero />
|
||||||
|
<Highlights />
|
||||||
|
<Testimonials />
|
||||||
|
<CTA />
|
||||||
|
<Footer />
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue