
export const metadata = {
  title: "Lovestrong Audiobooks",
  description: "Secure audiobook streaming with subscriptions",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body className="min-h-screen bg-white text-gray-900">
        <div className="max-w-4xl mx-auto p-4">
          <header className="mb-6">
            <h1 className="text-2xl font-bold">Lovestrong Audiobooks</h1>
          </header>
          {children}
        </div>
      </body>
    </html>
  );
}
