import './globals.css'; import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import { Providers } from './providers'; import { Toaster } from '@/components/ui/toaster'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'Attune Heart Therapy | Nathalie Mac Guffie, LCSW | Miami, FL', description: 'Compassionate, evidence-based therapy in Miami, FL. Licensed Clinical Social Worker offering anxiety, depression, trauma therapy and more.', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }