language text full complated
This commit is contained in:
28
app/page.tsx
Normal file
28
app/page.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user