import Navbar from "./components/Navbar" import Footer from "./components/Footer" import type { Metadata } from 'next'; // import { Inter } from 'next/font/google'; import './globals.css'; import './components.css'; // const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: "Win's Personal Website", description: 'Powered by Next.js', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (