import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import "./styles/variables.css"; import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "KegDigital - Web Design & Development", description: "We craft stunning, high-performing websites that turn visitors into clients."}; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}