import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Syne, DM_Mono, Instrument_Serif } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const syne = Syne({ variable: "--font-syne", subsets: ["latin"], weight: ["400", "600", "700", "800"], }); const dmMono = DM_Mono({ variable: "--font-dm-mono", subsets: ["latin"], weight: ["300", "400", "500"], }); const instrumentSerif = Instrument_Serif({ variable: "--font-instrument-serif", subsets: ["latin"], weight: "400", style: ["italic"], }); export const metadata: Metadata = { title: "NeuralEdge — AI Tools for Entrepreneurs", description: "Discover cutting-edge AI tools and strategies for modern entrepreneurs. Stay ahead with latest insights.", keywords: "AI tools, entrepreneurship, business automation", metadataBase: new URL("https://neuraledge.com"), alternates: { canonical: "https://neuraledge.com"}, openGraph: { title: "NeuralEdge — AI Tools for Entrepreneurs", description: "Discover cutting-edge AI tools and strategies for modern entrepreneurs.", url: "https://neuraledge.com", siteName: "NeuralEdge", type: "website"}, twitter: { card: "summary_large_image", title: "NeuralEdge — AI Tools for Entrepreneurs", description: "Discover cutting-edge AI tools and strategies for modern entrepreneurs."}, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}