diff --git a/src/app/page.tsx b/src/app/page.tsx index f93893b..e1dfc0a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,36 +1,54 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroCentered from "@/components/sections/hero/HeroCentered"; import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; +import SplitAbout from "@/components/sections/about/SplitAbout"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Zap, TrendingUp, Palette, Monitor, Upload, Lock, Sparkles, Heart, CheckCircle } from "lucide-react"; +import { + Zap, + TrendingUp, + Palette, + Monitor, + Upload, + Lock, + Target, + Globe, + Users, + DollarSign, + Gift, + Sparkles, + Crown, + CheckCircle, + Heart, +} from "lucide-react"; -export default function HomePage() { +export default function Home() { const navItems = [ { name: "Home", id: "/" }, - { name: "Features", id: "/features" }, - { name: "Pricing", id: "/pricing" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Features", id: "#features" }, + { name: "Pricing", id: "#pricing" }, + { name: "About", id: "#about" }, ]; return ( +
+ +
+ +
+ +
+
@@ -194,28 +243,20 @@ export default function HomePage() { title="Ready to Transform Your Content?" description="Join thousands of creators using Syncora. Start with one free use per day and upgrade whenever you're ready. No credit card required." useInvertedBackground={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/sleek-dashboard-interface-showing-syncor-1772927098863-4a07f700.png?_wi=1" - imageAlt="Sleek dashboard interface showing Syncora platform in action. Content creator workspace with video p" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/sleek-dashboard-interface-showing-syncor-1772927098863-4a07f700.png" + imageAlt="Syncora Dashboard" mediaAnimation="slide-up" mediaPosition="right" inputs={[ { - name: "email", - type: "email", - placeholder: "Enter your email", - required: true, + name: "email", type: "email", placeholder: "Enter your email", required: true, }, { - name: "niche", - type: "text", - placeholder: "Your content niche (e.g., fitness, tech reviews)", - required: true, + name: "niche", type: "text", placeholder: "Your content niche (e.g., fitness, tech reviews)", required: true, }, ]} textarea={{ - name: "message", - placeholder: "Tell us about your content goals (optional)", - rows: 4, + name: "message", placeholder: "Tell us about your content goals (optional)", rows: 4, required: false, }} buttonText="Get Started Free" @@ -225,10 +266,10 @@ export default function HomePage() {
); -} \ No newline at end of file +}