import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; // Použijeme font Inter, ktorý je pre "PRPL" štýl ideálny const inter = Inter({ subsets: ["latin"], weight: ['400', '700', '900'] }); export const metadata: Metadata = { title: "Jetomit_ Bio | Portfolio", description: "13-year-old Full-stack developer building digital experiences.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {/* Tento div vytvorí tie jemné kruhy na pozadí pre celú stránku */}
{/* Obsah stránky sa vykreslí tu */}
{children}
); }