import type { Metadata } from "next" import type { ReactNode } from "react" import { Manrope } from "next/font/google" import "@shared/styles/global.scss" import { AppProviders } from "@shared/context/AppProviders" export const metadata: Metadata = { title: "Coffee Project", description: "Standalone Next.js app using FSD structure", } const manrope = Manrope({ subsets: ["latin", "cyrillic"], preload: true, display: "swap", variable: "--font-manrope", }) export default function RootLayout({ children, }: Readonly<{ children: ReactNode }>) { return (