import type { Metadata } from 'next';
import './globals.css';

export const metadata: Metadata = {
  title: 'Kyuc — Your stories, always with them',
  description: 'A gentle, voice-first way for parents and grandparents to preserve the stories that made them.',
  openGraph: {
    title: 'Kyuc — Your stories, always with them',
    description: 'Memories that move through time.',
    images: [{ url: '/og.png', width: 1536, height: 1024, alt: 'Kyuc — Your stories, always with them' }],
  },
  twitter: {
    card: 'summary_large_image',
    title: 'Kyuc — Your stories, always with them',
    description: 'Memories that move through time.',
    images: ['/og.png'],
  },
};

export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  return <html lang="en"><body>{children}</body></html>;
}
