Snai3i-LandingPage-FormBuilder / frontend / src / pages / Home / index.tsx
index.tsx
Raw
import HeroSection from "@/pages/Home/components/HeroSection";

import Testimonials from "@/pages/Home/components/Testimonials";

import TrustedBySection from "./components/TrustedBySection";
import ServicesSection from "./components/ServicesSection";
import StatisticsSection from "./components/StatisticsSection";
import Snai3iAtTV from "./components/Snai3iAtTVSection";
import InstructionalDesignerSection from "./components/InstrcutionalDesignerSection";
import WeAreNotLimitedSection from "./components/WeAreNotLimitedSection";

function Home() {
  return (
    <div>
      <HeroSection />
      <TrustedBySection />
      <ServicesSection />
      <StatisticsSection />
      <Snai3iAtTV />
      <InstructionalDesignerSection />
      <WeAreNotLimitedSection />
      <Testimonials />
    </div>
  );
}

export default Home;