import type { Metadata } from "next"; import { Outfit } from "next/font/google"; import "./globals.css"; const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Webuild - Web Design Studio", description: "Create beautiful, high-performance websites that help businesses grow"}; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}