import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Cellwell - Content Strategy Agency", description: "Content strategy agency specializing in monetization, brand deals, and video editing"}; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}