Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 00a1e34871 | |||
| d64969715d | |||
| 91bf7898e8 | |||
| e8fc126a9b | |||
| 3272aa3108 |
@@ -1,49 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 - Creator Discovery Platform", description: "Stop manual searching. CreatorMiner automates creator discovery, enriches profiles with AI, and enables bulk outreach—all in one platform."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ 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 } from "lucide-react";
|
import { Sparkles, Zap, TrendingUp, Star, Crown } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -189,7 +189,7 @@ export default function LandingPage() {
|
|||||||
"1,000 creator searches/month", "Basic filtering (followers, niche)", "CSV export", "AI niche classification", "Email support"],
|
"1,000 creator searches/month", "Basic filtering (followers, niche)", "CSV export", "AI niche classification", "Email support"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "growth", tag: "Growth Plan", tagIcon: TrendingUp,
|
id: "growth", tag: "Growth Plan - Most Popular", tagIcon: TrendingUp,
|
||||||
price: "$99", period: "/month", description:
|
price: "$99", period: "/month", description:
|
||||||
"Ideal for growing agencies and creator programs with scaling needs", button: { text: "Start Free Trial", href: "#contact" },
|
"Ideal for growing agencies and creator programs with scaling needs", button: { text: "Start Free Trial", href: "#contact" },
|
||||||
featuresTitle: "What's Included:", features: [
|
featuresTitle: "What's Included:", features: [
|
||||||
|
|||||||
Reference in New Issue
Block a user