Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8be89ebb4d | |||
| 12263718ed | |||
| 00a1e34871 | |||
| d64969715d | |||
| 91bf7898e8 | |||
| e8fc126a9b | |||
| 3272aa3108 |
@@ -1,49 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CreatorMiner - Creator Discovery & Outreach Platform", description: "Automate creator discovery on Instagram. Search by niche, filter by followers, and build targeted creator lists in minutes. Bulk export and messaging included.", keywords: "creator discovery, influencer search, Instagram scraping, creator outreach, influencer database, niche targeting", openGraph: {
|
||||
title: "CreatorMiner - Discover Creators at Scale", description: "Automate creator discovery, filter by niche and followers, and reach out at scale. Join hundreds of agencies and brands.", type: "website", siteName: "CreatorMiner", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyMiYC6XANWVRIK5EQPeVhsLa/a-modern-clean-creator-discovery-dashboa-1772630908445-38e66ab8.png", alt: "CreatorMiner Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CreatorMiner - Creator Discovery Platform", description: "Find and reach creators at scale. Automate discovery, filter by niche, export lists, and launch outreach campaigns.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyMiYC6XANWVRIK5EQPeVhsLa/a-modern-clean-creator-discovery-dashboa-1772630908445-38e66ab8.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "CreatorMiner - Creator Discovery Platform", description: "Stop manual searching. CreatorMiner automates creator discovery, enriches profiles with AI, and enables bulk outreach—all in one platform."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -7,11 +7,10 @@ import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaA
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Sparkles, Zap, TrendingUp, Star } from "lucide-react";
|
||||
import { Sparkles, Zap, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -33,7 +32,6 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "How It Works", id: "about" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
@@ -172,40 +170,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</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", 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">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
@@ -235,7 +199,7 @@ export default function LandingPage() {
|
||||
"Available filters include: follower count range (e.g., 5k–50k), 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:
|
||||
"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:
|
||||
"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: [
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "How It Works", href: "#about" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Roadmap", href: "#" },
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user