|
import { Hero } from "@/components/hero";
|
|
import { Testimonials } from "@/components/testimonials";
|
|
import { AIFeatures } from "@/components/ai-features";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Hero />
|
|
<AIFeatures />
|
|
<Testimonials />
|
|
</main>
|
|
);
|
|
}
|