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 Pattanaphol - Personal Website", description: "A hobbyist full-stack developer, high schooler, enjoyer of 60s-80s music, language nerd, a hobbyist electrician from Thailand.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children}