website/app/layout.tsx

33 lines
880 B
TypeScript
Raw Permalink Normal View History

2025-11-06 12:02:10 +00:00
import './globals.css';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import { Providers } from './providers';
import { Toaster } from '@/components/ui/toaster';
2025-11-05 11:28:53 +00:00
2025-11-06 12:02:10 +00:00
const inter = Inter({ subsets: ['latin'] });
2025-11-05 11:28:53 +00:00
export const metadata: Metadata = {
2025-11-06 12:02:10 +00:00
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.',
2025-11-07 21:37:43 +00:00
icons: {
icon: '/icon.svg',
},
2025-11-05 11:28:53 +00:00
};
export default function RootLayout({
children,
2025-11-06 12:02:10 +00:00
}: {
2025-11-05 11:28:53 +00:00
children: React.ReactNode;
2025-11-06 12:02:10 +00:00
}) {
2025-11-05 11:28:53 +00:00
return (
2025-11-06 12:02:10 +00:00
<html lang="en" suppressHydrationWarning>
<body className={inter.className} suppressHydrationWarning>
2025-11-06 12:02:10 +00:00
<Providers>
{children}
<Toaster />
</Providers>
2025-11-05 11:28:53 +00:00
</body>
</html>
);
}