29 lines
710 B
TypeScript
29 lines
710 B
TypeScript
"use client";
|
|
|
|
import { LanguageProvider } from "@/contexts/language-context";
|
|
import Header from "@/components/header";
|
|
import Hero from "@/components/hero";
|
|
import Features from "@/components/features";
|
|
import HowItWorks from "@/components/how-it-works";
|
|
import Pricing from "@/components/pricing";
|
|
import Video from "@/components/video";
|
|
import FAQ from "@/components/faq";
|
|
import Contact from "@/components/contact";
|
|
import Footer from "@/components/footer";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="w-full">
|
|
<Header />
|
|
<Hero />
|
|
<Features />
|
|
<HowItWorks />
|
|
<Pricing />
|
|
<Video />
|
|
<FAQ />
|
|
<Contact />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|