import { Inter } from "next/font/google"; import "./globals.css"; import dotenv from "dotenv"; dotenv.config(); const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "Reduce", description: "A simple URL shortening service.", icons: { icon: "/favicon.ico", }, openGraph: { type: "website", locale: "en_US", url: "https://r.webark.in", title: "Reduce - Simple URL Shortener", description: "A simple URL shortening service to make your links concise.", siteName: "Reduce", images: [ { url: "/og-image.png", width: 1200, height: 630, alt: "Reduce - URL Shortening Service", }, ], }, }; export default function RootLayout({ children }) { return ( {/* Basic SEO Meta Tags */} {/* Open Graph Meta Tags */} {/* Favicon */} {children} ); }