28 lines
936 B
TypeScript
28 lines
936 B
TypeScript
import Navbar from "@/components/Navbar";
|
|
import HeroSection from "@/components/HeroSection";
|
|
import VideoSection from "@/components/VideoSection";
|
|
import HighlightsSection from "@/components/HighlightsSection";
|
|
import Testimonials from "@/components/Testimonials";
|
|
import FeaturesSection from "@/components/FeaturesSection";
|
|
import FAQ from "@/components/FAQ";
|
|
import ContactSection from "@/components/ContactSection";
|
|
import Footer from "@/components/Footer";
|
|
import ComparisonSection from "@/components/ComparisonSection";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative min-h-screen font-sans bg-black text-white selection:bg-red-600 selection:text-white">
|
|
<Navbar />
|
|
<HeroSection />
|
|
<VideoSection />
|
|
<ComparisonSection />
|
|
<FeaturesSection />
|
|
<HighlightsSection />
|
|
<Testimonials />
|
|
<FAQ />
|
|
{/* <ContactSection /> */}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|