import type { Metadata, Viewport } from "next"; import "./globals.css"; const jost = { variable: "font-display" }; const jostBody = { variable: "font-body" }; export const metadata: Metadata = { metadataBase: new URL("https://nearle.in"), title: { default: "Nearle — Your Neighborhood, Delivered", template: "%s | Nearle", }, description: "Hyper-local essentials, hot meals, and professional services from verified businesses within your 2km radius. India's #1 neighborhood commerce platform.", keywords: [ "hyperlocal", "neighborhood delivery", "Coimbatore", "local grocery", "Nearle", "home services", "India delivery", "neighborhood commerce", ], openGraph: { title: "Nearle — Your Neighborhood, Delivered", description: "Hyper-local essentials, hot meals, and professional services from verified businesses within your 2km radius.", url: "https://nearle.in", siteName: "Nearle", locale: "en_IN", type: "website", images: [ { url: "/logo.png", width: 512, height: 512, alt: "Nearle logo", }, ], }, twitter: { card: "summary", title: "Nearle — Your Neighborhood, Delivered", description: "India's hyperlocal neighborhood commerce platform", images: ["/logo.png"], }, alternates: { canonical: "/" }, icons: { icon: "/favicon.ico", shortcut: "/favicon.ico", apple: "/apple-icon.png", }, robots: { index: true, follow: true }, }; export const viewport: Viewport = { themeColor: "#4d046a", width: "device-width", initialScale: 1, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Material Symbols Outlined */} {/* eslint-disable-next-line @next/next/no-page-custom-font */} {children} ); }