import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Attune Heart Therapy", description: "Attune Heart Therapy", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }