import type { Metadata } from "next"; import { Abril_Fatface, Inter } from "next/font/google"; import "./globals.css"; import { Toaster } from "sonner"; import { ProvidersWrapper } from "@/components/providers-wrapper"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const abril = Abril_Fatface({ weight: "400", subsets: ["latin"], variable: "--font-abril", }); export const metadata: Metadata = { title: "CoopCredits — Watch, Earn, Cluck", description: "Earn $COOP tokens for watching content on Plex. The Hoboken Chicken coop rewards its flock.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }