From 252770edad52e273ce2d084fcdbdedc124043903 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:52:02 +0000 Subject: [PATCH 1/5] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 88 +++++++++++--------------------------- 1 file changed, 24 insertions(+), 64 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 108cbed..d51572f 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -19,8 +19,7 @@ export default function DashboardPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, @@ -28,8 +27,7 @@ export default function DashboardPage() { ], }, { - title: "For Creators", - items: [ + title: "For Creators", items: [ { label: "Start Creating", href: "https://redmoon.app/signup" }, { label: "Creator Guide", href: "/#" }, { label: "Monetization", href: "/monetize" }, @@ -37,8 +35,7 @@ export default function DashboardPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Discover Creators", href: "/creators" }, { label: "Trending Content", href: "/#" }, { label: "Stories", href: "/#testimonials" }, @@ -46,8 +43,7 @@ export default function DashboardPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Terms of Service", href: "/#" }, { label: "Privacy Policy", href: "/#" }, { label: "Community Guidelines", href: "/#" }, @@ -63,7 +59,7 @@ export default function DashboardPage() { borderRadius="rounded" contentWidth="medium" sizing="largeSmallSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="gradient-radial" primaryButtonStyle="shadow" secondaryButtonStyle="glass" @@ -99,9 +95,10 @@ export default function DashboardPage() { { value: "360°", title: "Content Overview" }, { value: "Real-Time", title: "Earnings Tracking" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=3" + imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg" imageAlt="Creator dashboard" mediaAnimation="slide-up" + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -116,55 +113,27 @@ export default function DashboardPage() { tagAnimation="slide-up" plans={[ { - id: "basic", - badge: "Basic", - badgeIcon: Star, - price: "Free", - subtitle: "Essential dashboard access", - buttons: [{ text: "Get Started", href: "https://redmoon.app/signup" }], + id: "basic", badge: "Basic", badgeIcon: Star, + price: "Free", subtitle: "Essential dashboard access", buttons: [{ text: "Get Started", href: "https://redmoon.app/signup" }], features: [ - "Basic analytics", - "Earnings tracking", - "Content calendar", - "Subscriber count", - ], + "Basic analytics", "Earnings tracking", "Content calendar", "Subscriber count"], }, { - id: "pro-dashboard", - badge: "Pro", - badgeIcon: Zap, - price: "Included in Pro", - subtitle: "Advanced dashboard analytics", - buttons: [ + id: "pro-dashboard", badge: "Pro", badgeIcon: Zap, + price: "Included in Pro", subtitle: "Advanced dashboard analytics", buttons: [ { text: "Upgrade to Pro", href: "https://redmoon.app/upgrade-pro" }, ], features: [ - "All Basic features +", - "Detailed analytics reports", - "Audience insights", - "Content performance metrics", - "Export data", - ], + "All Basic features +", "Detailed analytics reports", "Audience insights", "Content performance metrics", "Export data"], }, { - id: "premium-dashboard", - badge: "Premium", - badgeIcon: Crown, - price: "Included in Premium", - subtitle: "Maximum dashboard power", - buttons: [ + id: "premium-dashboard", badge: "Premium", badgeIcon: Crown, + price: "Included in Premium", subtitle: "Maximum dashboard power", buttons: [ { - text: "Become Premium", - href: "https://redmoon.app/upgrade-premium", - }, + text: "Become Premium", href: "https://redmoon.app/upgrade-premium"}, ], features: [ - "All Pro features +", - "AI-powered recommendations", - "Predictive analytics", - "Custom dashboards", - "Priority support access", - ], + "All Pro features +", "AI-powered recommendations", "Predictive analytics", "Custom dashboards", "Priority support access"], }, ]} animationType="slide-up" @@ -183,25 +152,16 @@ export default function DashboardPage() { tagAnimation="slide-up" faqs={[ { - id: "1", - title: "How often is my dashboard data updated?", - content: - "Your dashboard updates in real-time. Views, likes, comments, and earnings metrics refresh every few seconds as new activity occurs on your content.", - }, + id: "1", title: "How often is my dashboard data updated?", content: + "Your dashboard updates in real-time. Views, likes, comments, and earnings metrics refresh every few seconds as new activity occurs on your content."}, { - id: "2", - title: "Can I download my analytics reports?", - content: - "Yes, Pro and Premium creators can export analytics reports as CSV or PDF files. Download monthly performance summaries, audience demographics, and earnings reports.", - }, + id: "2", title: "Can I download my analytics reports?", content: + "Yes, Pro and Premium creators can export analytics reports as CSV or PDF files. Download monthly performance summaries, audience demographics, and earnings reports."}, { - id: "3", - title: "How do I manage my subscriber list?", - content: - "Use the Subscribers tab to view all active subscribers, their subscription tier, join date, and last activity. You can also message subscribers directly or manage cancellations.", - }, + id: "3", title: "How do I manage my subscriber list?", content: + "Use the Subscribers tab to view all active subscribers, their subscription tier, join date, and last activity. You can also message subscribers directly or manage cancellations."}, ]} - imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg?_wi=3" + imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg" imageAlt="Dashboard FAQ" mediaAnimation="slide-up" faqsAnimation="slide-up" -- 2.49.1 From ae1bea7d48c184b35c40cb5f51a02feb10e51242 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:52:03 +0000 Subject: [PATCH 2/5] Update src/app/features/page.tsx --- src/app/features/page.tsx | 76 ++++++++++++--------------------------- 1 file changed, 23 insertions(+), 53 deletions(-) diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index 5b53aa4..96cb2f2 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -19,8 +19,7 @@ export default function FeaturesPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, @@ -28,8 +27,7 @@ export default function FeaturesPage() { ], }, { - title: "For Creators", - items: [ + title: "For Creators", items: [ { label: "Start Creating", href: "https://redmoon.app/signup" }, { label: "Creator Guide", href: "/#" }, { label: "Monetization", href: "/monetize" }, @@ -37,8 +35,7 @@ export default function FeaturesPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Discover Creators", href: "/creators" }, { label: "Trending Content", href: "/#" }, { label: "Stories", href: "/#testimonials" }, @@ -46,8 +43,7 @@ export default function FeaturesPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Terms of Service", href: "/#" }, { label: "Privacy Policy", href: "/#" }, { label: "Community Guidelines", href: "/#" }, @@ -63,7 +59,7 @@ export default function FeaturesPage() { borderRadius="rounded" contentWidth="medium" sizing="largeSmallSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="gradient-radial" primaryButtonStyle="shadow" secondaryButtonStyle="glass" @@ -97,38 +93,20 @@ export default function FeaturesPage() { tagAnimation="slide-up" features={[ { - id: "1", - title: "Instagram-Style Photo & Video Sharing", - author: "Content Team", - description: - "Upload and share high-quality photos and videos with your followers. Use filters, effects, and editing tools to enhance your content before posting.", - tags: ["Media", "Sharing"], + id: "1", title: "Instagram-Style Photo & Video Sharing", author: "Content Team", description: + "Upload and share high-quality photos and videos with your followers. Use filters, effects, and editing tools to enhance your content before posting.", tags: ["Media", "Sharing"], imageSrc: - "http://img.b2bpic.net/free-photo/interconnected-screens-collage-showing-modern-social-media-feed-clips_482257-129691.jpg?_wi=2", - imageAlt: "Video sharing interface", - }, + "http://img.b2bpic.net/free-photo/interconnected-screens-collage-showing-modern-social-media-feed-clips_482257-129691.jpg", imageAlt: "Video sharing interface"}, { - id: "2", - title: "Direct Messaging & Chat", - author: "Community Team", - description: - "Connect directly with your followers through private messaging. Build deeper relationships with your audience through one-on-one conversations.", - tags: ["Communication", "Engagement"], + id: "2", title: "Direct Messaging & Chat", author: "Community Team", description: + "Connect directly with your followers through private messaging. Build deeper relationships with your audience through one-on-one conversations.", tags: ["Communication", "Engagement"], imageSrc: - "http://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-man-typing-prompts-into-ai-powered-chat_482257-123072.jpg?_wi=2", - imageAlt: "Chat interface", - }, + "http://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-man-typing-prompts-into-ai-powered-chat_482257-123072.jpg", imageAlt: "Chat interface"}, { - id: "3", - title: "Short-Form Video Shorts", - author: "Creative Team", - description: - "Create and share TikTok-style short videos. Leverage trending sounds, effects, and formats to maximize reach and engagement.", - tags: ["Shorts", "Trending"], + id: "3", title: "Short-Form Video Shorts", author: "Creative Team", description: + "Create and share TikTok-style short videos. Leverage trending sounds, effects, and formats to maximize reach and engagement.", tags: ["Shorts", "Trending"], imageSrc: - "http://img.b2bpic.net/free-photo/grandparent-learning-use-digital-device_23-2149093499.jpg?_wi=2", - imageAlt: "Short video platform", - }, + "http://img.b2bpic.net/free-photo/grandparent-learning-use-digital-device_23-2149093499.jpg", imageAlt: "Short video platform"}, ]} animationType="slide-up" textboxLayout="default" @@ -148,9 +126,10 @@ export default function FeaturesPage() { { value: "Real-Time", title: "Analytics Dashboard" }, { value: "100+", title: "Collaboration Tools" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg" imageAlt="Advanced features interface" mediaAnimation="slide-up" + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -165,25 +144,16 @@ export default function FeaturesPage() { tagAnimation="slide-up" faqs={[ { - id: "1", - title: "What editing tools are available?", - content: - "Red Moon provides built-in filters, effects, cropping tools, and color adjustments. You can also connect third-party editing apps and upload pre-edited content.", - }, + id: "1", title: "What editing tools are available?", content: + "Red Moon provides built-in filters, effects, cropping tools, and color adjustments. You can also connect third-party editing apps and upload pre-edited content."}, { - id: "2", - title: "Can I schedule posts in advance?", - content: - "Yes, Pro and Premium creators can schedule posts up to 30 days in advance. Choose the best time to publish and let Red Moon handle the rest.", - }, + id: "2", title: "Can I schedule posts in advance?", content: + "Yes, Pro and Premium creators can schedule posts up to 30 days in advance. Choose the best time to publish and let Red Moon handle the rest."}, { - id: "3", - title: "How does the analytics dashboard work?", - content: - "View real-time engagement metrics, audience demographics, top-performing content, and earnings data. Export reports for further analysis.", - }, + id: "3", title: "How does the analytics dashboard work?", content: + "View real-time engagement metrics, audience demographics, top-performing content, and earnings data. Export reports for further analysis."}, ]} - imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg" imageAlt="FAQ support interface" mediaAnimation="slide-up" faqsAnimation="slide-up" -- 2.49.1 From e76b306acfa12a7fa2c1f17cece351f6fa36946d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:52:05 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 766f0f9..d2b9930 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,36 +5,21 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], + variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Red Moon - Creator Platform & Monetization Social Network", - description: "Share photos, videos, and short-form content while earning sustainable income. Red Moon is the creator platform with 80% revenue share, direct bank transfers, and complete admin control.", - keywords: "creator platform, social network, monetization, content sharing, video platform, earnings", - metadataBase: new URL("https://redmoon.app"), + title: "Red Moon - Creator Platform & Monetization Social Network", description: "Share photos, videos, and short-form content while earning sustainable income. Red Moon is the creator platform with 80% revenue share, direct bank transfers, and complete admin control.", keywords: "creator platform, social network, monetization, content sharing, video platform, earnings", metadataBase: new URL("https://redmoon.app"), alternates: { - canonical: "https://redmoon.app", - }, + canonical: "https://redmoon.app"}, openGraph: { - title: "Red Moon - Share Content, Earn Income", - description: "The creator platform where you control your earnings. 80% revenue share, direct payments, and powerful monetization tools.", - url: "https://redmoon.app", - siteName: "Red Moon", - type: "website", - images: [ + title: "Red Moon - Share Content, Earn Income", description: "The creator platform where you control your earnings. 80% revenue share, direct payments, and powerful monetization tools.", url: "https://redmoon.app", siteName: "Red Moon", type: "website", images: [ { - url: "https://redmoon.app/og-image.png", - alt: "Red Moon Creator Platform", - }, + url: "https://redmoon.app/og-image.png", alt: "Red Moon Creator Platform"}, ], }, twitter: { - card: "summary_large_image", - title: "Red Moon - Creator Earnings Platform", - description: "Monetize your content with 80% revenue share and direct bank transfers.", - images: ["https://redmoon.app/twitter-image.png"], + card: "summary_large_image", title: "Red Moon - Creator Earnings Platform", description: "Monetize your content with 80% revenue share and direct bank transfers.", images: ["https://redmoon.app/twitter-image.png"], }, robots: { index: true, -- 2.49.1 From 0ed6131cfda3f6569740471d2464be26241f5c0d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:52:05 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 245 +++++++++++++---------------------------------- 1 file changed, 66 insertions(+), 179 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9850f13..b57c650 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,8 +22,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, @@ -31,8 +30,7 @@ export default function HomePage() { ], }, { - title: "For Creators", - items: [ + title: "For Creators", items: [ { label: "Start Creating", href: "https://redmoon.app/signup" }, { label: "Creator Guide", href: "/#" }, { label: "Monetization", href: "/monetize" }, @@ -40,8 +38,7 @@ export default function HomePage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Discover Creators", href: "/creators" }, { label: "Trending Content", href: "/#" }, { label: "Stories", href: "/#testimonials" }, @@ -49,8 +46,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Terms of Service", href: "/#" }, { label: "Privacy Policy", href: "/#" }, { label: "Community Guidelines", href: "/#" }, @@ -66,7 +62,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="medium" sizing="largeSmallSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="gradient-radial" primaryButtonStyle="shadow" secondaryButtonStyle="glass" @@ -95,7 +91,7 @@ export default function HomePage() { @@ -251,6 +212,7 @@ export default function HomePage() { imageSrc="http://img.b2bpic.net/free-photo/employee-editing-documents-desktop-computer-office-desk_482257-126550.jpg" imageAlt="Admin control panel" mediaAnimation="slide-up" + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -265,60 +227,27 @@ export default function HomePage() { tagAnimation="slide-up" plans={[ { - id: "starter", - badge: "Popular", - badgeIcon: Star, - price: "Free", - subtitle: "Perfect for new creators", - buttons: [{ text: "Get Started", href: "https://redmoon.app/signup" }], + id: "starter", badge: "Popular", badgeIcon: Star, + price: "Free", subtitle: "Perfect for new creators", buttons: [{ text: "Get Started", href: "https://redmoon.app/signup" }], features: [ - "Unlimited photo/video uploads", - "Share short-form videos", - "Basic analytics", - "Direct messaging", - "60% revenue from premium posts", - ], + "Unlimited photo/video uploads", "Share short-form videos", "Basic analytics", "Direct messaging", "60% revenue from premium posts"], }, { - id: "pro", - badge: "Most Earnings", - badgeIcon: Zap, - price: "$4.99/mo", - subtitle: "For serious creators", - buttons: [ + id: "pro", badge: "Most Earnings", badgeIcon: Zap, + price: "$4.99/mo", subtitle: "For serious creators", buttons: [ { text: "Upgrade to Pro", href: "https://redmoon.app/upgrade-pro" }, ], features: [ - "Everything in Free +", - "80% revenue share", - "Advanced analytics & insights", - "Priority support", - "Bonus earnings from viral content", - "Exclusive creator tools", - "Brand partnerships access", - ], + "Everything in Free +", "80% revenue share", "Advanced analytics & insights", "Priority support", "Bonus earnings from viral content", "Exclusive creator tools", "Brand partnerships access"], }, { - id: "premium", - badge: "Maximum Benefits", - badgeIcon: Crown, - price: "$9.99/mo", - subtitle: "For top-tier creators", - buttons: [ + id: "premium", badge: "Maximum Benefits", badgeIcon: Crown, + price: "$9.99/mo", subtitle: "For top-tier creators", buttons: [ { - text: "Become Premium", - href: "https://redmoon.app/upgrade-premium", - }, + text: "Become Premium", href: "https://redmoon.app/upgrade-premium"}, ], features: [ - "Everything in Pro +", - "85% revenue share", - "Dedicated account manager", - "Custom branding options", - "Live streaming capabilities", - "NFT content support", - "Monthly performance bonuses", - ], + "Everything in Pro +", "85% revenue share", "Dedicated account manager", "Custom branding options", "Live streaming capabilities", "NFT content support", "Monthly performance bonuses"], }, ]} animationType="slide-up" @@ -337,49 +266,25 @@ export default function HomePage() { tagAnimation="slide-up" testimonials={[ { - id: "1", - name: "Sarah Chen", - handle: "@sarahcreates", - testimonial: - "Red Moon changed my life! I went from posting for free to earning $8,000 monthly. The platform is intuitive, and I love that I get 80% of my earnings directly.", - rating: 5, + id: "1", name: "Sarah Chen", handle: "@sarahcreates", testimonial: + "Red Moon changed my life! I went from posting for free to earning $8,000 monthly. The platform is intuitive, and I love that I get 80% of my earnings directly.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/portrait-young-pretty-woman-sitting-table-trench-coat-working-laptop-co-working-office-wearing-glasses-smiling-happy-positive-workplace_285396-65.jpg", - imageAlt: "Sarah Chen creator avatar", - }, + "http://img.b2bpic.net/free-photo/portrait-young-pretty-woman-sitting-table-trench-coat-working-laptop-co-working-office-wearing-glasses-smiling-happy-positive-workplace_285396-65.jpg", imageAlt: "Sarah Chen creator avatar"}, { - id: "2", - name: "Marcus Rodriguez", - handle: "@marcusvisions", - testimonial: - "As a content creator for 5 years, this is the best platform I've used. The short-form video feature rivals TikTok, and the monetization is actually fair.", - rating: 5, + id: "2", name: "Marcus Rodriguez", handle: "@marcusvisions", testimonial: + "As a content creator for 5 years, this is the best platform I've used. The short-form video feature rivals TikTok, and the monetization is actually fair.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/man-filming-q-session-with-mobile-phone-answering-questions_482257-116712.jpg", - imageAlt: "Marcus Rodriguez creator avatar", - }, + "http://img.b2bpic.net/free-photo/man-filming-q-session-with-mobile-phone-answering-questions_482257-116712.jpg", imageAlt: "Marcus Rodriguez creator avatar"}, { - id: "3", - name: "Emma Thompson", - handle: "@emmastyle", - testimonial: - "I love the direct messaging feature - it helps me connect with my most loyal followers. Plus, the admin's customer service is excellent. I feel supported here.", - rating: 5, + id: "3", name: "Emma Thompson", handle: "@emmastyle", testimonial: + "I love the direct messaging feature - it helps me connect with my most loyal followers. Plus, the admin's customer service is excellent. I feel supported here.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-headphones_23-2149386585.jpg", - imageAlt: "Emma Thompson creator avatar", - }, + "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-headphones_23-2149386585.jpg", imageAlt: "Emma Thompson creator avatar"}, { - id: "4", - name: "David Kim", - handle: "@davidmotion", - testimonial: - "The viral content bonuses are game-changing! I earned $3,500 in bonuses last month alone. Red Moon genuinely rewards quality creators.", - rating: 5, + id: "4", name: "David Kim", handle: "@davidmotion", testimonial: + "The viral content bonuses are game-changing! I earned $3,500 in bonuses last month alone. Red Moon genuinely rewards quality creators.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/young-male-blogger-recording-station_1303-22012.jpg", - imageAlt: "David Kim creator avatar", - }, + "http://img.b2bpic.net/free-photo/young-male-blogger-recording-station_1303-22012.jpg", imageAlt: "David Kim creator avatar"}, ]} showRating={true} animationType="slide-up" @@ -398,43 +303,25 @@ export default function HomePage() { tagAnimation="slide-up" faqs={[ { - id: "1", - title: "How do I set my subscription price?", - content: - "You can set any price for your exclusive content. Red Moon suggests pricing between $0.99 and $99.99 monthly. You can change your pricing anytime from your creator dashboard. All payments go directly to your bank account with 80% of revenue.", - }, + id: "1", title: "How do I set my subscription price?", content: + "You can set any price for your exclusive content. Red Moon suggests pricing between $0.99 and $99.99 monthly. You can change your pricing anytime from your creator dashboard. All payments go directly to your bank account with 80% of revenue."}, { - id: "2", - title: "How quickly do I get paid?", - content: - "Payments are processed daily to your connected bank account. Once you reach $10 in earnings, you can withdraw anytime. Most transfers appear within 24-48 business hours depending on your bank.", - }, + id: "2", title: "How quickly do I get paid?", content: + "Payments are processed daily to your connected bank account. Once you reach $10 in earnings, you can withdraw anytime. Most transfers appear within 24-48 business hours depending on your bank."}, { - id: "3", - title: "What content can I share?", - content: - "Share photos, videos, short-form clips, and exclusive content. You can mark content as free or premium. Ensure all content complies with our community guidelines and copyright policies.", - }, + id: "3", title: "What content can I share?", content: + "Share photos, videos, short-form clips, and exclusive content. You can mark content as free or premium. Ensure all content complies with our community guidelines and copyright policies."}, { - id: "4", - title: "Can creators message each other?", - content: - "Yes! You can send direct messages to followers and other creators. This is perfect for collaborations and building community. Premium messaging features are available on Pro tiers.", - }, + id: "4", title: "Can creators message each other?", content: + "Yes! You can send direct messages to followers and other creators. This is perfect for collaborations and building community. Premium messaging features are available on Pro tiers."}, { - id: "5", - title: "What happens if someone violates community guidelines?", - content: - "The platform manager (you) has full control to block users, remove content, and manage all user data. We provide comprehensive admin tools to maintain a safe community.", - }, + id: "5", title: "What happens if someone violates community guidelines?", content: + "The platform manager (you) has full control to block users, remove content, and manage all user data. We provide comprehensive admin tools to maintain a safe community."}, { - id: "6", - title: "Do you take payments directly?", - content: - "Yes. All premium subscription payments go through our secure payment gateway. We process the transaction, take our platform fee, and transfer 80% directly to your bank account within 24 hours.", - }, + id: "6", title: "Do you take payments directly?", content: + "Yes. All premium subscription payments go through our secure payment gateway. We process the transaction, take our platform fee, and transfer 80% directly to your bank account within 24 hours."}, ]} - imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg" imageAlt="FAQ support interface" mediaAnimation="slide-up" faqsAnimation="slide-up" -- 2.49.1 From 458de575d3dc32b0dfcabdd8c51979fc8d930812 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:52:06 +0000 Subject: [PATCH 5/5] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 93 +++++++++++----------------------------- 1 file changed, 24 insertions(+), 69 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 41542ec..6280120 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -19,8 +19,7 @@ export default function PricingPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, @@ -28,8 +27,7 @@ export default function PricingPage() { ], }, { - title: "For Creators", - items: [ + title: "For Creators", items: [ { label: "Start Creating", href: "https://redmoon.app/signup" }, { label: "Creator Guide", href: "/#" }, { label: "Monetization", href: "/monetize" }, @@ -37,8 +35,7 @@ export default function PricingPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Discover Creators", href: "/creators" }, { label: "Trending Content", href: "/#" }, { label: "Stories", href: "/#testimonials" }, @@ -46,8 +43,7 @@ export default function PricingPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Terms of Service", href: "/#" }, { label: "Privacy Policy", href: "/#" }, { label: "Community Guidelines", href: "/#" }, @@ -63,7 +59,7 @@ export default function PricingPage() { borderRadius="rounded" contentWidth="medium" sizing="largeSmallSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="gradient-radial" primaryButtonStyle="shadow" secondaryButtonStyle="glass" @@ -97,60 +93,27 @@ export default function PricingPage() { tagAnimation="slide-up" plans={[ { - id: "starter", - badge: "Popular", - badgeIcon: Star, - price: "Free", - subtitle: "Perfect for new creators", - buttons: [{ text: "Get Started", href: "https://redmoon.app/signup" }], + id: "starter", badge: "Popular", badgeIcon: Star, + price: "Free", subtitle: "Perfect for new creators", buttons: [{ text: "Get Started", href: "https://redmoon.app/signup" }], features: [ - "Unlimited photo/video uploads", - "Share short-form videos", - "Basic analytics", - "Direct messaging", - "60% revenue from premium posts", - ], + "Unlimited photo/video uploads", "Share short-form videos", "Basic analytics", "Direct messaging", "60% revenue from premium posts"], }, { - id: "pro", - badge: "Most Earnings", - badgeIcon: Zap, - price: "$4.99/mo", - subtitle: "For serious creators", - buttons: [ + id: "pro", badge: "Most Earnings", badgeIcon: Zap, + price: "$4.99/mo", subtitle: "For serious creators", buttons: [ { text: "Upgrade to Pro", href: "https://redmoon.app/upgrade-pro" }, ], features: [ - "Everything in Free +", - "80% revenue share", - "Advanced analytics & insights", - "Priority support", - "Bonus earnings from viral content", - "Exclusive creator tools", - "Brand partnerships access", - ], + "Everything in Free +", "80% revenue share", "Advanced analytics & insights", "Priority support", "Bonus earnings from viral content", "Exclusive creator tools", "Brand partnerships access"], }, { - id: "premium", - badge: "Maximum Benefits", - badgeIcon: Crown, - price: "$9.99/mo", - subtitle: "For top-tier creators", - buttons: [ + id: "premium", badge: "Maximum Benefits", badgeIcon: Crown, + price: "$9.99/mo", subtitle: "For top-tier creators", buttons: [ { - text: "Become Premium", - href: "https://redmoon.app/upgrade-premium", - }, + text: "Become Premium", href: "https://redmoon.app/upgrade-premium"}, ], features: [ - "Everything in Pro +", - "85% revenue share", - "Dedicated account manager", - "Custom branding options", - "Live streaming capabilities", - "NFT content support", - "Monthly performance bonuses", - ], + "Everything in Pro +", "85% revenue share", "Dedicated account manager", "Custom branding options", "Live streaming capabilities", "NFT content support", "Monthly performance bonuses"], }, ]} animationType="slide-up" @@ -171,9 +134,10 @@ export default function PricingPage() { { value: "Up to 85%", title: "Creator Revenue Share" }, { value: "30 Days", title: "Free Trial Available" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg?_wi=4" + imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg" imageAlt="Pricing value comparison" mediaAnimation="slide-up" + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -188,25 +152,16 @@ export default function PricingPage() { tagAnimation="slide-up" faqs={[ { - id: "1", - title: "Can I change my tier anytime?", - content: - "Yes, you can upgrade or downgrade your tier anytime. Changes take effect immediately and we'll prorate your billing accordingly. No cancellation fees.", - }, + id: "1", title: "Can I change my tier anytime?", content: + "Yes, you can upgrade or downgrade your tier anytime. Changes take effect immediately and we'll prorate your billing accordingly. No cancellation fees."}, { - id: "2", - title: "Is there a free trial for paid tiers?", - content: - "Yes, Pro creators get a 30-day free trial. Cancel anytime within 30 days and you won't be charged. Premium tier includes a 14-day free trial.", - }, + id: "2", title: "Is there a free trial for paid tiers?", content: + "Yes, Pro creators get a 30-day free trial. Cancel anytime within 30 days and you won't be charged. Premium tier includes a 14-day free trial."}, { - id: "3", - title: "What payment methods do you accept?", - content: - "We accept all major credit cards, PayPal, Apple Pay, and Google Pay. Your subscription tier payment is separate from your creator earnings payouts.", - }, + id: "3", title: "What payment methods do you accept?", content: + "We accept all major credit cards, PayPal, Apple Pay, and Google Pay. Your subscription tier payment is separate from your creator earnings payouts."}, ]} - imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg?_wi=4" + imageSrc="http://img.b2bpic.net/free-photo/online-help-center_53876-95304.jpg" imageAlt="Pricing FAQ" mediaAnimation="slide-up" faqsAnimation="slide-up" -- 2.49.1