import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import './globals.css'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'Olathe Club of the Deaf', description: 'Community hub for the deaf community in Olathe', metadataBase: new URL('https://olathedeafclub.com'), keywords: ['deaf', 'olathe', 'club', 'community', 'ASL', 'events'], authors: [{ name: 'Olathe Club of the Deaf' }], openGraph: { title: 'Olathe Club of the Deaf', description: 'Community hub for the deaf community in Olathe', url: 'https://olathedeafclub.com', siteName: 'Olathe Club of the Deaf', images: [ { url: '/images/og-image.jpg', width: 1200, height: 630, alt: 'Olathe Club of the Deaf' } ], locale: 'en_US', type: 'website', }, twitter: { card: 'summary_large_image', title: 'Olathe Club of the Deaf', description: 'Community hub for the deaf community in Olathe', images: ['/images/og-image.jpg'], }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }