page.tsx
import FAQ from "@components/FAQ";
import CTA from "@/components/CTA";
import Hero from "@components/Hero";
import Video from "@/components/Video";
import Header from "@components/Header";
import Footer from "@components/Footer";
import Feature from "@components/Feature";
import LogoCloud from "@/components/LogoCloud";
import TestimonialGrid from "@/components/TestimonialGrid";
import SubscriptionPricing from "@/components/SubscriptionPricing";

const Home = () => {
	return (
		<>
			<Header />
			<main>
				<Hero />
				<LogoCloud />
				<Video
					src="https://youtu.be/aqz-KE-bpKQ"
					title="Watch our video"
					description="Watch our video to learn more about our product"
				/>
				<Feature />
				<SubscriptionPricing />
				<TestimonialGrid />
				<FAQ />
				<CTA />
			</main>
			<Footer />
		</>
	);
};

export default Home;

This code imports all the components we need to create a landing page for our project. To add your own Style see the Styling guide.