import localFont from "next/font/local"; import "./globals.css"; import Navbar from "../components/Navbar"; import Footer from "../components/Footer"; import MotionProvider from "../components/MotionProvider"; const geistSans = localFont({ src: "./fonts/GeistVF.woff", variable: "--font-geist-sans", weight: "100 900", }); const geistMono = localFont({ src: "./fonts/GeistMonoVF.woff", variable: "--font-geist-mono", weight: "100 900", }); export const metadata = { title: "YznApps - Professional IT Solutions", description: "YznApps provides professional IT solutions including web development, mobile apps, hosting, and VPS services.", }; export default function RootLayout({ children }) { return (
{children}