Layout.jsx 479 B

1234567891011121314151617181920
  1. import "../index.css";
  2. export const metadata = {
  3. title: "BookMind - Unravel Stories, One Map at a Time",
  4. description:
  5. "Explore character relationships and storylines with AI-powered visualizations.",
  6. };
  7. export default function RootLayout({ children }) {
  8. return (
  9. <html lang="en">
  10. <head>
  11. <title>{metadata.title}</title>
  12. <meta name="description" content={metadata.description} />
  13. </head>
  14. <body>{children}</body>
  15. </html>
  16. );
  17. }