base.tsx 458 B

12345678910111213
  1. export const BaseHtml = ({ children, title = "ConvertX" }) => (
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>{title}</title>
  7. <link rel="stylesheet" href="/pico.lime.min.css" />
  8. <link rel="stylesheet" href="/style.css" />
  9. <script src="https://unpkg.com/htmx.org@1.9.12"></script>
  10. </head>
  11. <body>{children}</body>
  12. </html>
  13. );