import type { Metadata } from "next"; import { DM_Serif_Text, Nunito_Sans } from "next/font/google"; import { IntroScreen } from "@/components/effects/intro-screen"; import { SmoothScroll } from "@/components/providers/smooth-scroll"; import "./globals.css"; const nunito = Nunito_Sans({ variable: "--font-nunito", subsets: ["latin"], weight: ["300", "400", "500", "600", "700", "800"], display: "swap", }); const dmSerif = DM_Serif_Text({ variable: "--font-dm-serif", subsets: ["latin"], weight: ["400"], style: ["normal", "italic"], display: "swap", }); export const metadata: Metadata = { title: "Slide deck", description: "Editorial deck system", // robots: { index: false, follow: false }, // uncomment for private decks }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ); }