Merge version_2 into main #4
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ 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, Star, Crown } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
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"],
|
||||
},
|
||||
{
|
||||
id: "growth", tag: "Growth Plan", tagIcon: TrendingUp,
|
||||
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: [
|
||||
|
||||
Reference in New Issue
Block a user