index.tsx

 1import { Hero } from "../components/Hero";
 2import { FeatureGrid } from "../components/FeatureGrid";
 3import { Testimonials } from "../components/Testimonials";
 4
 5export default function Home() {
 6  return (
 7    <>
 8      <Hero />
 9      <FeatureGrid />
10      <Testimonials />
11    </>
12  );
13}