Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-03-04 04:11:39 +00:00
4 changed files with 127 additions and 398 deletions

View File

@@ -19,8 +19,7 @@ export default function DocsPage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "/pricing" },
{ label: "Industries", href: "/industries" },
@@ -28,8 +27,7 @@ export default function DocsPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -37,8 +35,7 @@ export default function DocsPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "API Docs", href: "#" },
{ label: "Community", href: "#" },
@@ -79,7 +76,7 @@ export default function DocsPage() {
{ icon: Zap, label: "Code Examples", value: "200+" },
{ icon: Users, label: "Community Members", value: "12K+" },
]}
metricsAnimation="entrance-slide"
metricsAnimation="blur-reveal"
useInvertedBackground={false}
/>
</div>
@@ -90,48 +87,30 @@ export default function DocsPage() {
description="Common questions about our API, integrations, and developer tools."
tag="Documentation"
tagIcon={HelpCircle}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
animationType="smooth"
faqsAnimation="entrance-slide"
faqsAnimation="blur-reveal"
faqs={[
{
id: "1",
title: "How do I get API access?",
content:
"API access is included with Business and Enterprise plans. Go to your account dashboard, navigate to API Keys, and generate a new key. Store it securely—treat it like a password. Full API documentation is available at api.repurposeai.pro/docs with examples in Python, Node.js, JavaScript, and Go.",
},
id: "1", title: "How do I get API access?", content:
"API access is included with Business and Enterprise plans. Go to your account dashboard, navigate to API Keys, and generate a new key. Store it securely—treat it like a password. Full API documentation is available at api.repurposeai.pro/docs with examples in Python, Node.js, JavaScript, and Go."},
{
id: "2",
title: "What are the API rate limits?",
content:
"Starter plans: 100 requests/minute. Pro plans: 500 requests/minute. Business plans: 2,000 requests/minute. Enterprise plans: Custom limits. Rate limiting resets every minute. Use exponential backoff for retries. Monitor your usage in the dashboard.",
},
id: "2", title: "What are the API rate limits?", content:
"Starter plans: 100 requests/minute. Pro plans: 500 requests/minute. Business plans: 2,000 requests/minute. Enterprise plans: Custom limits. Rate limiting resets every minute. Use exponential backoff for retries. Monitor your usage in the dashboard."},
{
id: "3",
title: "Do you have webhooks for real-time events?",
content:
"Yes! Business and Enterprise plans support webhooks. Receive real-time notifications when content generation completes, errors occur, or scheduling events trigger. Configure webhooks in your account settings. All webhooks include signatures for security verification.",
},
id: "3", title: "Do you have webhooks for real-time events?", content:
"Yes! Business and Enterprise plans support webhooks. Receive real-time notifications when content generation completes, errors occur, or scheduling events trigger. Configure webhooks in your account settings. All webhooks include signatures for security verification."},
{
id: "4",
title: "How do I integrate with Zapier or other tools?",
content:
"We have pre-built integrations with Zapier, Integromat, and 500+ other apps through Zapier. Search for 'RepurposeAI Pro' in Zapier's app library. For custom integrations, use our REST API or webhooks. Our developer community has shared many Zapier recipes and automation workflows.",
},
id: "4", title: "How do I integrate with Zapier or other tools?", content:
"We have pre-built integrations with Zapier, Integromat, and 500+ other apps through Zapier. Search for 'RepurposeAI Pro' in Zapier's app library. For custom integrations, use our REST API or webhooks. Our developer community has shared many Zapier recipes and automation workflows."},
{
id: "5",
title: "Is there a client SDK for development?",
content:
"Yes! We provide official SDKs for Python, Node.js, JavaScript, Go, and Ruby. Install via npm, pip, gem, or go get. Full source code is on GitHub. We also welcome community contributions and have a developer grant program for open-source projects.",
},
id: "5", title: "Is there a client SDK for development?", content:
"Yes! We provide official SDKs for Python, Node.js, JavaScript, Go, and Ruby. Install via npm, pip, gem, or go get. Full source code is on GitHub. We also welcome community contributions and have a developer grant program for open-source projects."},
{
id: "6",
title: "How do I handle API errors?",
content:
"All API errors return standard HTTP status codes (400, 401, 403, 429, 500, etc.) with detailed error messages in JSON format. Include request IDs for debugging. Check our docs for specific error codes and troubleshooting steps. Contact support with your request ID if you need help.",
},
id: "6", title: "How do I handle API errors?", content:
"All API errors return standard HTTP status codes (400, 401, 403, 429, 500, etc.) with detailed error messages in JSON format. Include request IDs for debugging. Check our docs for specific error codes and troubleshooting steps. Contact support with your request ID if you need help."},
]}
/>
</div>
@@ -142,7 +121,7 @@ export default function DocsPage() {
title="Need Help With Integration?"
description="Our developer support team is here to assist with API questions, integrations, and technical implementation. Get quick responses and expert guidance."
tagIcon={Mail}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"

View File

@@ -19,8 +19,7 @@ export default function IndustriesPage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "/pricing" },
{ label: "Industries", href: "/industries" },
@@ -28,8 +27,7 @@ export default function IndustriesPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -37,8 +35,7 @@ export default function IndustriesPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "API Docs", href: "#" },
{ label: "Community", href: "#" },
@@ -76,43 +73,23 @@ export default function IndustriesPage() {
description="Specialized content repurposing models trained on industry language, compliance requirements, and best practices."
tag="Industries"
tagIcon={Briefcase}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
animationType="blur-reveal"
useInvertedBackground={false}
features={[
{
id: "01",
title: "Legal & Compliance",
description: "Generate contracts, legal briefs, regulatory documentation, and compliance-ready content with industry terminology and legal accuracy.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/linkedin-profile-and-thread-showcase-dis-1772597236855-f08f62b4.png?_wi=2",
imageAlt: "Legal documentation",
},
id: "01", title: "Legal & Compliance", description: "Generate contracts, legal briefs, regulatory documentation, and compliance-ready content with industry terminology and legal accuracy.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/linkedin-profile-and-thread-showcase-dis-1772597236855-f08f62b4.png", imageAlt: "Legal documentation"},
{
id: "02",
title: "Real Estate & Property",
description: "Create compelling property listings, real estate descriptions, market analyses, and client communications optimized for conversions.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/twitter-x-thread-display-showing-a-viral-1772597236941-37a1b686.png?_wi=2",
imageAlt: "Real estate listings",
},
id: "02", title: "Real Estate & Property", description: "Create compelling property listings, real estate descriptions, market analyses, and client communications optimized for conversions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/twitter-x-thread-display-showing-a-viral-1772597236941-37a1b686.png", imageAlt: "Real estate listings"},
{
id: "03",
title: "Finance & Investment",
description: "Generate financial reports, investment analyses, market summaries, and compliance documentation with precise financial terminology.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/email-client-interface-showing-a-beautif-1772597235775-b0ba0f55.png?_wi=2",
imageAlt: "Financial reports",
},
id: "03", title: "Finance & Investment", description: "Generate financial reports, investment analyses, market summaries, and compliance documentation with precise financial terminology.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/email-client-interface-showing-a-beautif-1772597235775-b0ba0f55.png", imageAlt: "Financial reports"},
{
id: "04",
title: "Healthcare & Medical",
description: "Create patient education materials, medical documentation, clinical summaries, and healthcare communications with medical accuracy.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/video-script-interface-with-ai-generated-1772597243267-7bff5880.png?_wi=2",
imageAlt: "Medical documentation",
},
id: "04", title: "Healthcare & Medical", description: "Create patient education materials, medical documentation, clinical summaries, and healthcare communications with medical accuracy.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/video-script-interface-with-ai-generated-1772597243267-7bff5880.png", imageAlt: "Medical documentation"},
]}
gridVariant="bento-grid"
buttons={[{ text: "Explore Industry AI", href: "https://app.repurposeai.pro/signup" }]}
buttonAnimation="entrance-slide"
buttonAnimation="blur-reveal"
/>
</div>
@@ -122,37 +99,16 @@ export default function IndustriesPage() {
description="See how professionals across different industries use RepurposeAI Pro to streamline their content workflow."
tag="Industry Success"
tagIcon={Quote}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
title: "Legal Briefs Generated 10x Faster",
quote: "The legal AI module understands contract language and compliance requirements perfectly. What used to take our paralegals 4 hours now takes 15 minutes. The quality is remarkable.",
name: "Robert Chen",
role: "Senior Partner, Chen & Associates Law Firm",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-founder--1772597234439-fa3669ba.png?_wi=2",
imageAlt: "Robert Chen",
},
id: "1", title: "Legal Briefs Generated 10x Faster", quote: "The legal AI module understands contract language and compliance requirements perfectly. What used to take our paralegals 4 hours now takes 15 minutes. The quality is remarkable.", name: "Robert Chen", role: "Senior Partner, Chen & Associates Law Firm", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-founder--1772597234439-fa3669ba.png", imageAlt: "Robert Chen"},
{
id: "2",
title: "Real Estate Listings Now Complete in Minutes",
quote: "Our agents used to spend hours writing property descriptions. Now they upload photos and let RepurposeAI Pro generate compelling listings. Our conversion rate jumped 35%.",
name: "Michelle Torres",
role: "CEO, TorresRealty Group",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-confident-fem-1772597234901-dee78f19.png?_wi=2",
imageAlt: "Michelle Torres",
},
id: "2", title: "Real Estate Listings Now Complete in Minutes", quote: "Our agents used to spend hours writing property descriptions. Now they upload photos and let RepurposeAI Pro generate compelling listings. Our conversion rate jumped 35%.", name: "Michelle Torres", role: "CEO, TorresRealty Group", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-confident-fem-1772597234901-dee78f19.png", imageAlt: "Michelle Torres"},
{
id: "3",
title: "Financial Reports Created Without Errors",
quote: "The finance AI handles complex terminology and compliance standards flawlessly. Our compliance team approves 99% of generated content without edits. This is a huge time saver.",
name: "James Whitmore",
role: "VP of Operations, CapitalEdge Investment",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-operatio-1772597234364-d3552761.png?_wi=2",
imageAlt: "James Whitmore",
},
id: "3", title: "Financial Reports Created Without Errors", quote: "The finance AI handles complex terminology and compliance standards flawlessly. Our compliance team approves 99% of generated content without edits. This is a huge time saver.", name: "James Whitmore", role: "VP of Operations, CapitalEdge Investment", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-operatio-1772597234364-d3552761.png", imageAlt: "James Whitmore"},
]}
/>
</div>
@@ -163,7 +119,7 @@ export default function IndustriesPage() {
title="Transform Content Creation In Your Industry"
description="Our specialized industry AI modules are available on Pro and Business plans. Start your free trial today and see how RepurposeAI Pro adapts to your industry needs."
tagIcon={Mail}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"

View File

@@ -23,8 +23,7 @@ export default function HomePage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "/pricing" },
{ label: "Industries", href: "/industries" },
@@ -32,8 +31,7 @@ export default function HomePage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -41,8 +39,7 @@ export default function HomePage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "API Docs", href: "#" },
{ label: "Community", href: "#" },
@@ -80,50 +77,34 @@ export default function HomePage() {
description="AI-powered content repurposing powered by industry-trained models. Transform your blog posts, articles, and documents into LinkedIn threads, Twitter posts, email sequences, video scripts, and more—automatically optimized for each platform."
tag="AI-Powered Content"
tagIcon={Sparkles}
tagAnimation="entrance-slide"
tagAnimation="opacity"
background={{ variant: "sparkles-gradient" }}
leftCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/a-modern-software-interface-showing-blog-1772597235605-e9127fcc.png",
imageAlt: "Blog to LinkedIn transformation",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/a-modern-software-interface-showing-blog-1772597235605-e9127fcc.png", imageAlt: "Blog to LinkedIn transformation"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/email-sequence-builder-interface-showing-1772597235685-6737d83a.png",
imageAlt: "Email sequence generation",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/email-sequence-builder-interface-showing-1772597235685-6737d83a.png", imageAlt: "Email sequence generation"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/social-media-content-calendar-view-showi-1772597236121-0fa735cc.png",
imageAlt: "Social media content calendar",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/social-media-content-calendar-view-showi-1772597236121-0fa735cc.png", imageAlt: "Social media content calendar"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/ai-content-optimization-dashboard-displa-1772597235798-32d2250b.png",
imageAlt: "AI content optimization",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/ai-content-optimization-dashboard-displa-1772597235798-32d2250b.png", imageAlt: "AI content optimization"},
]}
rightCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/comprehensive-analytics-dashboard-showin-1772597235369-1c7f755b.png",
imageAlt: "Performance dashboard",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/comprehensive-analytics-dashboard-showin-1772597235369-1c7f755b.png", imageAlt: "Performance dashboard"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/engagement-metrics-dashboard-displaying--1772597235334-2c47232b.png",
imageAlt: "Engagement metrics",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/engagement-metrics-dashboard-displaying--1772597235334-2c47232b.png", imageAlt: "Engagement metrics"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/digital-content-library-interface-showin-1772597235706-cb7df1a3.png",
imageAlt: "Content library",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/digital-content-library-interface-showin-1772597235706-cb7df1a3.png", imageAlt: "Content library"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/team-collaboration-workspace-showing-mul-1772597235445-fb1f9d37.png",
imageAlt: "Team collaboration",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/team-collaboration-workspace-showing-mul-1772597235445-fb1f9d37.png", imageAlt: "Team collaboration"},
]}
carouselPosition="right"
buttons={[
{ text: "Start Free (100 Credits)", href: "https://app.repurposeai.pro/signup" },
{ text: "Watch Demo", href: "#demo" },
]}
buttonAnimation="entrance-slide"
buttonAnimation="blur-reveal"
avatarText="Used by 3,200+ marketers & professionals"
/>
</div>
@@ -134,43 +115,23 @@ export default function HomePage() {
description="Transform your content across multiple formats with intelligent AI that understands your brand voice and audience."
tag="Features"
tagIcon={Zap}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
animationType="blur-reveal"
useInvertedBackground={false}
features={[
{
id: "01",
title: "Blog → LinkedIn Threads",
description: "Convert long-form content into engaging LinkedIn threads that drive engagement and reach.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/linkedin-profile-and-thread-showcase-dis-1772597236855-f08f62b4.png?_wi=1",
imageAlt: "LinkedIn thread conversion",
},
id: "01", title: "Blog → LinkedIn Threads", description: "Convert long-form content into engaging LinkedIn threads that drive engagement and reach.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/linkedin-profile-and-thread-showcase-dis-1772597236855-f08f62b4.png", imageAlt: "LinkedIn thread conversion"},
{
id: "02",
title: "Blog → Twitter/X Threads",
description: "Break down blog posts into viral-ready Twitter threads optimized for maximum impressions.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/twitter-x-thread-display-showing-a-viral-1772597236941-37a1b686.png?_wi=1",
imageAlt: "Twitter thread creation",
},
id: "02", title: "Blog → Twitter/X Threads", description: "Break down blog posts into viral-ready Twitter threads optimized for maximum impressions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/twitter-x-thread-display-showing-a-viral-1772597236941-37a1b686.png", imageAlt: "Twitter thread creation"},
{
id: "03",
title: "Email Sequence Generator",
description: "Generate multi-part email sequences that nurture leads and drive conversions.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/email-client-interface-showing-a-beautif-1772597235775-b0ba0f55.png?_wi=1",
imageAlt: "Email sequence design",
},
id: "03", title: "Email Sequence Generator", description: "Generate multi-part email sequences that nurture leads and drive conversions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/email-client-interface-showing-a-beautif-1772597235775-b0ba0f55.png", imageAlt: "Email sequence design"},
{
id: "04",
title: "Video Script Creator",
description: "Transform written content into compelling video scripts with talking points and visual cues.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/video-script-interface-with-ai-generated-1772597243267-7bff5880.png?_wi=1",
imageAlt: "Video script generation",
},
id: "04", title: "Video Script Creator", description: "Transform written content into compelling video scripts with talking points and visual cues.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/video-script-interface-with-ai-generated-1772597243267-7bff5880.png", imageAlt: "Video script generation"},
]}
gridVariant="bento-grid"
buttons={[{ text: "View All Features", href: "#all-features" }]}
buttonAnimation="entrance-slide"
buttonAnimation="blur-reveal"
/>
</div>
@@ -183,7 +144,7 @@ export default function HomePage() {
{ icon: Share2, label: "Content Formats", value: "12+" },
{ icon: Zap, label: "Generation Speed", value: "<2min" },
]}
metricsAnimation="entrance-slide"
metricsAnimation="blur-reveal"
useInvertedBackground={false}
/>
</div>
@@ -194,75 +155,38 @@ export default function HomePage() {
description="From individual creators to enterprise teams, we have a plan that fits your content repurposing needs."
tag="Pricing"
tagIcon={CreditCard}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{
id: "free",
badge: "Best to Start",
badgeIcon: Sparkles,
price: "Free",
subtitle: "Perfect for trying it out",
buttons: [{ text: "Start Free", href: "https://app.repurposeai.pro/signup" }],
id: "free", badge: "Best to Start", badgeIcon: Sparkles,
price: "Free", subtitle: "Perfect for trying it out", buttons: [{ text: "Start Free", href: "https://app.repurposeai.pro/signup" }],
features: [
"100 credits/month",
"Basic repurposing (3 outputs)",
"Email & blog formats only",
"Community support",
],
"100 credits/month", "Basic repurposing (3 outputs)", "Email & blog formats only", "Community support"],
},
{
id: "starter",
badge: "Most Popular",
badgeIcon: Star,
price: "$39",
subtitle: "/month • Perfect for solo creators",
buttons: [
id: "starter", badge: "Most Popular", badgeIcon: Star,
price: "$39", subtitle: "/month • Perfect for solo creators", buttons: [
{ text: "Start Starter", href: "https://app.repurposeai.pro/checkout?plan=starter" },
],
features: [
"1,000 credits/month",
"All basic outputs",
"Limited scheduling",
"Basic analytics",
"Email support",
],
"1,000 credits/month", "All basic outputs", "Limited scheduling", "Basic analytics", "Email support"],
},
{
id: "pro",
badge: "Recommended",
badgeIcon: Zap,
price: "$79",
subtitle: "/month • For growing teams",
buttons: [{ text: "Start Pro", href: "https://app.repurposeai.pro/checkout?plan=pro" }],
id: "pro", badge: "Recommended", badgeIcon: Zap,
price: "$79", subtitle: "/month • For growing teams", buttons: [{ text: "Start Pro", href: "https://app.repurposeai.pro/checkout?plan=pro" }],
features: [
"3,000 credits/month",
"All repurposing formats",
"Full scheduling suite",
"Advanced analytics",
"Brand voice memory",
"Priority support",
],
"3,000 credits/month", "All repurposing formats", "Full scheduling suite", "Advanced analytics", "Brand voice memory", "Priority support"],
},
{
id: "business",
badge: "For Agencies",
badgeIcon: Briefcase,
price: "$149",
subtitle: "/month • Team & industry AI",
buttons: [
id: "business", badge: "For Agencies", badgeIcon: Briefcase,
price: "$149", subtitle: "/month • Team & industry AI", buttons: [
{ text: "Start Business", href: "https://app.repurposeai.pro/checkout?plan=business" },
],
features: [
"Unlimited credits",
"Industry AI (Legal, Real Estate, Finance, Medical)",
"Team seats (up to 5)",
"API access",
"Custom integrations",
"Dedicated support",
],
"Unlimited credits", "Industry AI (Legal, Real Estate, Finance, Medical)", "Team seats (up to 5)", "API access", "Custom integrations", "Dedicated support"],
},
]}
carouselMode="buttons"
@@ -275,64 +199,22 @@ export default function HomePage() {
description="See what marketing professionals and agencies say about RepurposeAI Pro"
tag="Testimonials"
tagIcon={Quote}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
title: "Reduced Content Creation Time by 80%",
quote: "RepurposeAI Pro has completely transformed how we produce content. What used to take our team days now takes hours. The quality is exceptional and the AI truly understands our brand voice.",
name: "Sarah Chen",
role: "CMO at TechFlow Agency",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-confident-fem-1772597234901-dee78f19.png?_wi=1",
imageAlt: "Sarah Chen",
},
id: "1", title: "Reduced Content Creation Time by 80%", quote: "RepurposeAI Pro has completely transformed how we produce content. What used to take our team days now takes hours. The quality is exceptional and the AI truly understands our brand voice.", name: "Sarah Chen", role: "CMO at TechFlow Agency", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-confident-fem-1772597234901-dee78f19.png", imageAlt: "Sarah Chen"},
{
id: "2",
title: "ROI That Actually Justifies the Investment",
quote: "The scheduler integration alone pays for itself. We're hitting 43% more engagement on LinkedIn and saving thousands in content labor monthly. This is a game-changer.",
name: "Marcus Johnson",
role: "Founder, Growth Collective",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-founder--1772597234439-fa3669ba.png?_wi=1",
imageAlt: "Marcus Johnson",
},
id: "2", title: "ROI That Actually Justifies the Investment", quote: "The scheduler integration alone pays for itself. We're hitting 43% more engagement on LinkedIn and saving thousands in content labor monthly. This is a game-changer.", name: "Marcus Johnson", role: "Founder, Growth Collective", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-founder--1772597234439-fa3669ba.png", imageAlt: "Marcus Johnson"},
{
id: "3",
title: "Perfect for Multi-Channel Distribution",
quote: "Finally, a tool that gets how different platforms need different content. We're posting consistently everywhere without the burnout. The AI quality is legitimately impressive.",
name: "Emily Rodriguez",
role: "Content Director, InnovateCorp",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-female-conten-1772597234935-46c9b79a.png",
imageAlt: "Emily Rodriguez",
},
id: "3", title: "Perfect for Multi-Channel Distribution", quote: "Finally, a tool that gets how different platforms need different content. We're posting consistently everywhere without the burnout. The AI quality is legitimately impressive.", name: "Emily Rodriguez", role: "Content Director, InnovateCorp", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-female-conten-1772597234935-46c9b79a.png", imageAlt: "Emily Rodriguez"},
{
id: "4",
title: "Industry AI Saved Us Weeks of Work",
quote: "The legal brief generator alone has saved our compliance team weeks of manual work. Having AI that understands our industry specifics is invaluable. Highly recommend.",
name: "David Kim",
role: "Operations Lead, LexisNova",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-operatio-1772597234364-d3552761.png?_wi=1",
imageAlt: "David Kim",
},
id: "4", title: "Industry AI Saved Us Weeks of Work", quote: "The legal brief generator alone has saved our compliance team weeks of manual work. Having AI that understands our industry specifics is invaluable. Highly recommend.", name: "David Kim", role: "Operations Lead, LexisNova", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-operatio-1772597234364-d3552761.png", imageAlt: "David Kim"},
{
id: "5",
title: "Best Content Tool Investment We've Made",
quote: "Quality, speed, and ease of use—RepurposeAI Pro nails all three. Our ROI calculator showed we're saving $3,200+ monthly. Worth every penny.",
name: "Jessica Martinez",
role: "Marketing Manager, CloudSync",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-female-market-1772597234135-abf708a5.png",
imageAlt: "Jessica Martinez",
},
id: "5", title: "Best Content Tool Investment We've Made", quote: "Quality, speed, and ease of use—RepurposeAI Pro nails all three. Our ROI calculator showed we're saving $3,200+ monthly. Worth every penny.", name: "Jessica Martinez", role: "Marketing Manager, CloudSync", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-female-market-1772597234135-abf708a5.png", imageAlt: "Jessica Martinez"},
{
id: "6",
title: "Scaling Content Without Scaling Headcount",
quote: "We scaled our content output 5x without hiring more people. The team loves the platform and users are seeing real results. This is the future of content creation.",
name: "Alex Patel",
role: "CEO, StartupXYZ",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-ceo-earl-1772597236661-37328269.png",
imageAlt: "Alex Patel",
},
id: "6", title: "Scaling Content Without Scaling Headcount", quote: "We scaled our content output 5x without hiring more people. The team loves the platform and users are seeing real results. This is the future of content creation.", name: "Alex Patel", role: "CEO, StartupXYZ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/professional-headshot-of-a-male-ceo-earl-1772597236661-37328269.png", imageAlt: "Alex Patel"},
]}
/>
</div>
@@ -343,72 +225,42 @@ export default function HomePage() {
description="Everything you need to know about RepurposeAI Pro and how it works"
tag="Help"
tagIcon={HelpCircle}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
animationType="smooth"
faqsAnimation="entrance-slide"
faqsAnimation="blur-reveal"
faqs={[
{
id: "1",
title: "How does the AI learn my brand voice?",
content:
"RepurposeAI Pro uses advanced machine learning to analyze your existing content, tone, and style. You can also upload custom brand guidelines and writing samples. The AI learns from these patterns to maintain consistency across all generated content, ensuring every output feels authentically yours.",
},
id: "1", title: "How does the AI learn my brand voice?", content:
"RepurposeAI Pro uses advanced machine learning to analyze your existing content, tone, and style. You can also upload custom brand guidelines and writing samples. The AI learns from these patterns to maintain consistency across all generated content, ensuring every output feels authentically yours."},
{
id: "2",
title: "What formats can I repurpose content into?",
content:
"With RepurposeAI Pro, you can transform content into: LinkedIn Posts & Threads, Twitter/X Threads, Email Sequences, Instagram Captions, TikTok Scripts, Video Scripts, SEO Meta Descriptions, Product Descriptions, Blog Post Outlines, Case Study Formats, and more. New formats are added regularly based on user demand.",
},
id: "2", title: "What formats can I repurpose content into?", content:
"With RepurposeAI Pro, you can transform content into: LinkedIn Posts & Threads, Twitter/X Threads, Email Sequences, Instagram Captions, TikTok Scripts, Video Scripts, SEO Meta Descriptions, Product Descriptions, Blog Post Outlines, Case Study Formats, and more. New formats are added regularly based on user demand."},
{
id: "3",
title: "Do I need technical knowledge to use this?",
content:
"No technical knowledge required! RepurposeAI Pro is designed for non-technical users. Simply upload your content or paste a URL, choose your outputs, select your brand voice, and hit generate. It's that simple. Everything is intuitive and user-friendly.",
},
id: "3", title: "Do I need technical knowledge to use this?", content:
"No technical knowledge required! RepurposeAI Pro is designed for non-technical users. Simply upload your content or paste a URL, choose your outputs, select your brand voice, and hit generate. It's that simple. Everything is intuitive and user-friendly."},
{
id: "4",
title: "How accurate is the content generation?",
content:
"Our AI generates content that's ready to publish, but we always recommend a quick review before posting. The accuracy is typically 95%+ for tone and message preservation. You can easily edit any generated content directly in the platform before scheduling or downloading.",
},
id: "4", title: "How accurate is the content generation?", content:
"Our AI generates content that's ready to publish, but we always recommend a quick review before posting. The accuracy is typically 95%+ for tone and message preservation. You can easily edit any generated content directly in the platform before scheduling or downloading."},
{
id: "5",
title: "Can I use this for industry-specific content?",
content:
"Yes! Our Industry AI add-on provides specialized models for Legal (contracts, briefs, regulations), Real Estate (listings, property descriptions), Finance (reports, summaries), Medical (patient education, documentation), and E-commerce (product descriptions, marketing copy). Each is trained on industry-specific language and compliance requirements.",
},
id: "5", title: "Can I use this for industry-specific content?", content:
"Yes! Our Industry AI add-on provides specialized models for Legal (contracts, briefs, regulations), Real Estate (listings, property descriptions), Finance (reports, summaries), Medical (patient education, documentation), and E-commerce (product descriptions, marketing copy). Each is trained on industry-specific language and compliance requirements."},
{
id: "6",
title: "What if I'm not satisfied with generated content?",
content:
"You have several options: (1) Use the Regenerate button to get alternate versions, (2) Adjust the brand voice settings and try again, (3) Edit the content directly in our editor, (4) Use the bulk regenerate feature to get multiple variations at once. We also offer a 14-day money-back guarantee on annual plans.",
},
id: "6", title: "What if I'm not satisfied with generated content?", content:
"You have several options: (1) Use the Regenerate button to get alternate versions, (2) Adjust the brand voice settings and try again, (3) Edit the content directly in our editor, (4) Use the bulk regenerate feature to get multiple variations at once. We also offer a 14-day money-back guarantee on annual plans."},
{
id: "7",
title: "How do credits work?",
content:
"Credits determine how much content you can generate. Different outputs cost different amounts: a LinkedIn post might cost 5 credits, while a full email sequence costs 50 credits. You get monthly credits with your plan. Unused credits roll over (with our Pro plan and above). You can also purchase additional credit packs anytime.",
},
id: "7", title: "How do credits work?", content:
"Credits determine how much content you can generate. Different outputs cost different amounts: a LinkedIn post might cost 5 credits, while a full email sequence costs 50 credits. You get monthly credits with your plan. Unused credits roll over (with our Pro plan and above). You can also purchase additional credit packs anytime."},
{
id: "8",
title: "Can I schedule posts directly from RepurposeAI Pro?",
content:
"Yes! Pro and Business plans include our scheduling suite. Connect your social media accounts, email platforms, and content management systems. Once content is generated, schedule it directly for optimal posting times. The scheduler optimizes timing based on your audience's engagement patterns.",
},
id: "8", title: "Can I schedule posts directly from RepurposeAI Pro?", content:
"Yes! Pro and Business plans include our scheduling suite. Connect your social media accounts, email platforms, and content management systems. Once content is generated, schedule it directly for optimal posting times. The scheduler optimizes timing based on your audience's engagement patterns."},
{
id: "9",
title: "Is my content secure and private?",
content:
"Absolutely. All your data is encrypted end-to-end. We never use your content to train public models. Your data is stored securely on SOC 2 compliant servers. You maintain 100% ownership of all generated content. We comply with GDPR, CCPA, and other data privacy regulations.",
},
id: "9", title: "Is my content secure and private?", content:
"Absolutely. All your data is encrypted end-to-end. We never use your content to train public models. Your data is stored securely on SOC 2 compliant servers. You maintain 100% ownership of all generated content. We comply with GDPR, CCPA, and other data privacy regulations."},
{
id: "10",
title: "Can I integrate RepurposeAI Pro with other tools?",
content:
"Business plan users get full API access for custom integrations. We also have pre-built integrations with Zapier, Buffer, Hootsuite, HubSpot, Marketo, ConvertKit, and more. Our developer documentation makes building custom integrations straightforward. Contact our support team for integration assistance.",
},
id: "10", title: "Can I integrate RepurposeAI Pro with other tools?", content:
"Business plan users get full API access for custom integrations. We also have pre-built integrations with Zapier, Buffer, Hootsuite, HubSpot, Marketo, ConvertKit, and more. Our developer documentation makes building custom integrations straightforward. Contact our support team for integration assistance."},
]}
/>
</div>
@@ -419,7 +271,7 @@ export default function HomePage() {
title="Stay Updated With Repurposing Intelligence"
description="Get weekly tips on content strategy, AI updates, and exclusive early access to new features. Join 8,400+ creators and agencies optimizing their content workflow."
tagIcon={Mail}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"

View File

@@ -19,8 +19,7 @@ export default function PricingPage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "/pricing" },
{ label: "Industries", href: "/industries" },
@@ -28,8 +27,7 @@ export default function PricingPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -37,8 +35,7 @@ export default function PricingPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "API Docs", href: "#" },
{ label: "Community", href: "#" },
@@ -76,75 +73,38 @@ export default function PricingPage() {
description="From individual creators to enterprise teams, we have a plan that fits your content repurposing needs. All plans include a 14-day free trial and no credit card required."
tag="Pricing Plans"
tagIcon={CreditCard}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{
id: "free",
badge: "Best to Start",
badgeIcon: Sparkles,
price: "Free",
subtitle: "Perfect for trying it out",
buttons: [{ text: "Start Free", href: "https://app.repurposeai.pro/signup" }],
id: "free", badge: "Best to Start", badgeIcon: Sparkles,
price: "Free", subtitle: "Perfect for trying it out", buttons: [{ text: "Start Free", href: "https://app.repurposeai.pro/signup" }],
features: [
"100 credits/month",
"Basic repurposing (3 outputs)",
"Email & blog formats only",
"Community support",
],
"100 credits/month", "Basic repurposing (3 outputs)", "Email & blog formats only", "Community support"],
},
{
id: "starter",
badge: "Most Popular",
badgeIcon: Star,
price: "$39",
subtitle: "/month • Perfect for solo creators",
buttons: [
id: "starter", badge: "Most Popular", badgeIcon: Star,
price: "$39", subtitle: "/month • Perfect for solo creators", buttons: [
{ text: "Start Starter", href: "https://app.repurposeai.pro/checkout?plan=starter" },
],
features: [
"1,000 credits/month",
"All basic outputs",
"Limited scheduling",
"Basic analytics",
"Email support",
],
"1,000 credits/month", "All basic outputs", "Limited scheduling", "Basic analytics", "Email support"],
},
{
id: "pro",
badge: "Recommended",
badgeIcon: Zap,
price: "$79",
subtitle: "/month • For growing teams",
buttons: [{ text: "Start Pro", href: "https://app.repurposeai.pro/checkout?plan=pro" }],
id: "pro", badge: "Recommended", badgeIcon: Zap,
price: "$79", subtitle: "/month • For growing teams", buttons: [{ text: "Start Pro", href: "https://app.repurposeai.pro/checkout?plan=pro" }],
features: [
"3,000 credits/month",
"All repurposing formats",
"Full scheduling suite",
"Advanced analytics",
"Brand voice memory",
"Priority support",
],
"3,000 credits/month", "All repurposing formats", "Full scheduling suite", "Advanced analytics", "Brand voice memory", "Priority support"],
},
{
id: "business",
badge: "For Agencies",
badgeIcon: Briefcase,
price: "$149",
subtitle: "/month • Team & industry AI",
buttons: [
id: "business", badge: "For Agencies", badgeIcon: Briefcase,
price: "$149", subtitle: "/month • Team & industry AI", buttons: [
{ text: "Start Business", href: "https://app.repurposeai.pro/checkout?plan=business" },
],
features: [
"Unlimited credits",
"Industry AI (Legal, Real Estate, Finance, Medical)",
"Team seats (up to 5)",
"API access",
"Custom integrations",
"Dedicated support",
],
"Unlimited credits", "Industry AI (Legal, Real Estate, Finance, Medical)", "Team seats (up to 5)", "API access", "Custom integrations", "Dedicated support"],
},
]}
carouselMode="buttons"
@@ -157,48 +117,30 @@ export default function PricingPage() {
description="Got questions about our pricing plans? We've got answers."
tag="FAQ"
tagIcon={HelpCircle}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
animationType="smooth"
faqsAnimation="entrance-slide"
faqsAnimation="blur-reveal"
faqs={[
{
id: "1",
title: "How do I choose the right plan?",
content:
"Start with our Free plan to explore RepurposeAI Pro. If you're generating 5-10 pieces of content monthly, Starter is perfect. Pro suits teams generating 20-50 pieces monthly. Business is for agencies and enterprises with unlimited needs. You can upgrade or downgrade anytime.",
},
id: "1", title: "How do I choose the right plan?", content:
"Start with our Free plan to explore RepurposeAI Pro. If you're generating 5-10 pieces of content monthly, Starter is perfect. Pro suits teams generating 20-50 pieces monthly. Business is for agencies and enterprises with unlimited needs. You can upgrade or downgrade anytime."},
{
id: "2",
title: "What happens to unused credits?",
content:
"With Free and Starter plans, unused monthly credits expire at month end. Pro and Business plans allow credit rollover for up to 2 months. You can also purchase additional credit packs that never expire. Check your account dashboard for credit balance and expiration dates.",
},
id: "2", title: "What happens to unused credits?", content:
"With Free and Starter plans, unused monthly credits expire at month end. Pro and Business plans allow credit rollover for up to 2 months. You can also purchase additional credit packs that never expire. Check your account dashboard for credit balance and expiration dates."},
{
id: "3",
title: "Are there setup fees or hidden charges?",
content:
"No setup fees, no hidden charges. You only pay the monthly subscription price shown. Additional features like Industry AI modules are add-ons at transparent pricing. All pricing is per-user or per-seat depending on the plan. Cancel anytime with no penalty.",
},
id: "3", title: "Are there setup fees or hidden charges?", content:
"No setup fees, no hidden charges. You only pay the monthly subscription price shown. Additional features like Industry AI modules are add-ons at transparent pricing. All pricing is per-user or per-seat depending on the plan. Cancel anytime with no penalty."},
{
id: "4",
title: "Can I change plans mid-month?",
content:
"Yes! You can upgrade or downgrade your plan anytime. Upgrades take effect immediately. Downgrades take effect at your next billing cycle. We'll prorate any charges based on your usage. Check the billing page to adjust your plan.",
},
id: "4", title: "Can I change plans mid-month?", content:
"Yes! You can upgrade or downgrade your plan anytime. Upgrades take effect immediately. Downgrades take effect at your next billing cycle. We'll prorate any charges based on your usage. Check the billing page to adjust your plan."},
{
id: "5",
title: "What's included in the Industry AI add-on?",
content:
"Industry AI modules ($29/month each or included in Business plan) provide specialized models for: Legal (contracts, briefs, compliance docs), Real Estate (listings, descriptions), Finance (reports, analyses), Medical (patient education, documentation), and E-commerce (product descriptions, marketing copy).",
},
id: "5", title: "What's included in the Industry AI add-on?", content:
"Industry AI modules ($29/month each or included in Business plan) provide specialized models for: Legal (contracts, briefs, compliance docs), Real Estate (listings, descriptions), Finance (reports, analyses), Medical (patient education, documentation), and E-commerce (product descriptions, marketing copy)."},
{
id: "6",
title: "Is there a yearly discount available?",
content:
"Yes! Pay annually and get 20% off. Starter: $374/year (vs $468). Pro: $758/year (vs $948). Business: $1,432/year (vs $1,788). Annual plans are billed upfront. You still get the same 14-day money-back guarantee on annual subscriptions.",
},
id: "6", title: "Is there a yearly discount available?", content:
"Yes! Pay annually and get 20% off. Starter: $374/year (vs $468). Pro: $758/year (vs $948). Business: $1,432/year (vs $1,788). Annual plans are billed upfront. You still get the same 14-day money-back guarantee on annual subscriptions."},
]}
/>
</div>
@@ -209,7 +151,7 @@ export default function PricingPage() {
title="Join 8,400+ Creators Using RepurposeAI Pro"
description="Start your free trial today. No credit card required. Generate unlimited content for 14 days and discover how RepurposeAI Pro transforms your workflow."
tagIcon={Mail}
tagAnimation="entrance-slide"
tagAnimation="blur-reveal"
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"