2 Commits

Author SHA1 Message Date
8be89ebb4d Update src/app/page.tsx 2026-03-04 13:37:06 +00:00
12263718ed Merge version_2 into main
Merge version_2 into main
2026-03-04 13:34:00 +00:00

View File

@@ -7,11 +7,10 @@ import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaA
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import FaqBase from "@/components/sections/faq/FaqBase"; import FaqBase from "@/components/sections/faq/FaqBase";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Sparkles, Zap, TrendingUp, Star, Crown } from "lucide-react"; import { Sparkles, Zap, TrendingUp } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -33,7 +32,6 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "Features", id: "features" }, { name: "Features", id: "features" },
{ name: "How It Works", id: "about" }, { name: "How It Works", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
@@ -172,40 +170,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Simple, Transparent Pricing"
description="Choose the plan that fits your creator discovery needs"
tag="Pricing"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{
id: "starter", tag: "Starter Plan", tagIcon: Zap,
price: "$29", period: "/month", description:
"Perfect for solo creators and small agencies starting their discovery journey", button: { text: "Start Free Trial", href: "#contact" },
featuresTitle: "What's Included:", features: [
"1,000 creator searches/month", "Basic filtering (followers, niche)", "CSV export", "AI niche classification", "Email support"],
},
{
id: "growth", tag: "Growth Plan - Most Popular", tagIcon: TrendingUp,
price: "$99", period: "/month", description:
"Ideal for growing agencies and creator programs with scaling needs", button: { text: "Start Free Trial", href: "#contact" },
featuresTitle: "What's Included:", features: [
"10,000 creator searches/month", "Advanced filtering (engagement, country, date range)", "Google Sheets & Excel export", "85%+ niche accuracy", "Bulk messaging templates", "API access", "Priority support"],
},
{
id: "agency", tag: "Agency Plan", tagIcon: Star,
price: "$299", period: "/month", description:
"Enterprise solution for agencies managing multiple client campaigns", button: { text: "Start Free Trial", href: "#contact" },
featuresTitle: "What's Included:", features: [
"Unlimited creator searches", "Full feature access", "Team accounts (up to 10 users)", "Campaign management dashboard", "Advanced analytics & reporting", "Dedicated account manager", "Custom integrations", "24/7 priority support"],
},
]}
/>
</div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqBase <FaqBase
title="Frequently Asked Questions" title="Frequently Asked Questions"
@@ -235,7 +199,7 @@ export default function LandingPage() {
"Available filters include: follower count range (e.g., 5k50k), niche category, country/region, engagement rate threshold, and recent activity date range (e.g., last 30 days). You can combine multiple filters to build highly targeted creator lists."}, "Available filters include: follower count range (e.g., 5k50k), niche category, country/region, engagement rate threshold, and recent activity date range (e.g., last 30 days). You can combine multiple filters to build highly targeted creator lists."},
{ {
id: "7", title: "Can I use CreatorMiner for bulk messaging?", content: id: "7", title: "Can I use CreatorMiner for bulk messaging?", content:
"Messaging features are available in the Growth and Agency plans. You can create message templates with personalization variables like {{name}}, {{niche}}, and {{followers}}. The system supports configurable delays between messages, daily send limits, and automatic retry logic for failed sends to maintain account safety."}, "Messaging features are available with our platform. You can create message templates with personalization variables like {{name}}, {{niche}}, and {{followers}}. The system supports configurable delays between messages, daily send limits, and automatic retry logic for failed sends to maintain account safety."},
{ {
id: "8", title: "Is there a free trial?", content: id: "8", title: "Is there a free trial?", content:
"Yes! All plans include a free trial so you can test the platform. The trial gives you full access to search, filtering, export, and AI classification features. No credit card required to get started."}, "Yes! All plans include a free trial so you can test the platform. The trial gives you full access to search, filtering, export, and AI classification features. No credit card required to get started."},
@@ -276,7 +240,7 @@ export default function LandingPage() {
{ {
title: "Product", items: [ title: "Product", items: [
{ label: "Features", href: "#features" }, { label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" }, { label: "How It Works", href: "#about" },
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "#faq" },
{ label: "Roadmap", href: "#" }, { label: "Roadmap", href: "#" },
], ],