diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 784c281..a386e33 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +