diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 47da038..e8b2258 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,110 +1,40 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import SplitAbout from "@/components/sections/about/SplitAbout"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Heart, Zap, Target, Globe, Users, CheckCircle } from "lucide-react"; +import { + Zap, + Target, + Globe, + Users, + CheckCircle, + Heart, +} from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Features", id: "/" }, - { name: "Pricing", id: "/pricing" }, - { name: "About", id: "about" }, - { name: "Contact", id: "/" }, - ]; - - const bulletPoints = [ - { - icon: Zap, - title: "Time-Saving AI", - description: "Generate scripts and designs in seconds, not hours. Spend time creating, not planning.", - }, - { - icon: Target, - title: "Niche-Specific Content", - description: "Whether you're in fitness, tech, lifestyle, or any other niche, we've got you covered.", - }, - { - icon: Globe, - title: "Platform Optimized", - description: "Every video is optimized for its platform with correct aspect ratios and trending formats.", - }, - { - icon: Users, - title: "Creator Community", - description: "Join thousands of creators using Syncora daily. Share ideas, learn, and grow together.", - }, - ]; - - const logos = [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/logo-youtube-1772927099490.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/logo-tiktok-1772927098976.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/logo-instagram-1772927099490.png", - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/logo-facebook-1772927098863.png", - "http://img.b2bpic.net/free-vector/interior-design-logo-template_742173-3120.jpg", - "http://img.b2bpic.net/free-vector/brain-love-logo-business-branding-template-designs-inspiration-isolated-white-background_384344-1306.jpg", - "http://img.b2bpic.net/free-vector/technology-logo-collection-gradient-style_52683-13893.jpg", - ]; - - const faqs = [ - { - id: "1", - title: "What's included in the free tier?", - content: "The free tier gives you access to 1 AI-generated script and 1 animated thumbnail per day. You can use all platform formats (YouTube, TikTok, Instagram, Facebook) and upload up to 5MB of images daily. It's perfect for testing the platform.", - }, - { - id: "2", - title: "Can I cancel my subscription anytime?", - content: "Yes! You can cancel your monthly subscription at any time with no penalties. Your access continues until the end of your billing period. If you purchase the lifetime access, there's no subscription to cancel—it's yours forever.", - }, - { - id: "3", - title: "What payment methods do you accept?", - content: "We accept credit card (Visa, Mastercard, American Express), Apple Pay, and Cash App. All payments are processed securely through industry-standard encryption.", - }, - { - id: "4", - title: "What aspect ratios does Syncora support?", - content: "We support all major platform ratios: YouTube Shorts (9:16), TikTok (9:16), Instagram Reels (9:16), YouTube standard (16:9), and Facebook (16:9 or 1:1). Our AI automatically adapts your content to each format.", - }, - { - id: "5", - title: "Can I use Syncora content commercially?", - content: "Yes! All content generated through Syncora is yours to use. Whether you monetize on YouTube, sell products, or use it for commercial purposes, you have full rights to everything you create.", - }, - { - id: "6", - title: "How do I access my saved content?", - content: "Once you sign up with your email, all your generated scripts and designs are saved to your account. You can access them from any device—desktop, tablet, or mobile—by logging in anytime.", - }, - { - id: "7", - title: "Is my personal data safe?", - content: "Absolutely. We use enterprise-grade encryption to protect your data. We never sell your information to third parties, and we comply with GDPR and other privacy regulations.", - }, - { - id: "8", - title: "Can I upgrade from free or monthly to lifetime?", - content: "Yes! You can upgrade anytime. If you've already paid for monthly, we'll credit that towards your lifetime purchase, so you only pay the difference.", - }, + { name: "Features", id: "#features" }, + { name: "Pricing", id: "#pricing" }, + { name: "About", id: "#about" }, ]; return ( @@ -145,43 +87,21 @@ export default function AboutPage() { tagIcon={CheckCircle} textboxLayout="default" useInvertedBackground={true} - logos={logos} + names=[ + "YouTube", "TikTok", "Instagram", "Facebook", "Creator Tools", "Content Studio", "Video Hub"] speed={40} showCard={true} - buttons={[ - { - text: "Join 5,000+ Creators", - href: "/signup", - }, - ]} - /> - - -
-
); -} \ No newline at end of file +} diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index b70f70e..11e74d1 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -3,10 +3,21 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import SplitAbout from "@/components/sections/about/SplitAbout"; +import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Zap, Target, Globe, Users, DollarSign, Gift, Sparkles, Crown } from "lucide-react"; +import { + Zap, + TrendingUp, + Palette, + Monitor, + Upload, + Lock, + DollarSign, + Gift, + Sparkles, + Crown, +} from "lucide-react"; export default function FeaturesPage() { const navItems = [ @@ -39,33 +50,41 @@ export default function FeaturesPage() { /> -
- +
@@ -81,28 +100,19 @@ export default function FeaturesPage() { plans={[ { id: "free", badge: "Free Trial", badgeIcon: Gift, - price: "$0", subtitle: "Perfect for getting started", buttons: [ - { - text: "Get Started", href: "/signup"}, - ], + price: "$0", subtitle: "Perfect for getting started", buttons: [{ text: "Get Started", href: "/signup" }], features: [ "1 AI-generated script per day", "1 animated thumbnail per day", "Access to trending ideas", "Basic image upload (up to 5MB)", "YouTube, TikTok, Instagram, Facebook support", "Mobile app access", "Community support"], }, { id: "monthly", badge: "Most Popular", badgeIcon: Sparkles, - price: "$10", subtitle: "Billed monthly. Great for consistent creators.", buttons: [ - { - text: "Subscribe Now", href: "/checkout?plan=monthly"}, - ], + price: "$10", subtitle: "Billed monthly. Great for consistent creators.", buttons: [{ text: "Subscribe Now", href: "/checkout?plan=monthly" }], features: [ "Unlimited AI-generated scripts", "Unlimited animated thumbnails", "Advanced customization options", "Unlimited image uploads", "All platform formats supported", "Priority email support", "Download in HD quality", "Monthly content calendar", "Early access to new features"], }, { id: "lifetime", badge: "Best Value", badgeIcon: Crown, - price: "$50", subtitle: "One-time payment. Unlimited access forever.", buttons: [ - { - text: "Buy Lifetime", href: "/checkout?plan=lifetime"}, - ], + price: "$50", subtitle: "One-time payment. Unlimited access forever.", buttons: [{ text: "Buy Lifetime", href: "/checkout?plan=lifetime" }], features: [ "Unlimited everything forever", "All current and future features", "Lifetime updates included", "Priority support 24/7", "Team collaboration (up to 5 users)", "Advanced analytics dashboard", "Custom branding options", "API access for integrations", "No subscription. Ever."], }, @@ -113,10 +123,10 @@ export default function FeaturesPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7304348..ac9d1e5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Syncora - AI Content Creator Platform | Scripts, Ideas & Thumbnails", - description: "Generate AI-powered scripts, trending video ideas, and customizable thumbnails for YouTube, TikTok, Instagram & Facebook. Free tier + flexible pricing. Join 5,000+ creators.", - keywords: "AI content creator, video script generator, TikTok content, YouTube shorts, Instagram reels, thumbnail generator, content creation tools", - openGraph: { - title: "Syncora - AI Content Creator Platform", - description: "Transform your content creation with AI. Generate scripts, ideas, and thumbnails for all platforms.", - url: "https://syncora.app", - siteName: "Syncora", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/modern-software-dashboard-for-content-cr-1772927099490-052886ae.png", - alt: "Syncora Platform Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Syncora - AI Content Creator Platform", - description: "Generate AI scripts, trending ideas & thumbnails for YouTube, TikTok, Instagram & Facebook", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/modern-software-dashboard-for-content-cr-1772927099490-052886ae.png"], - }, -}; + title: "Syncora - AI-Powered Content Creation Platform", description: "Transform your content creation with AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -