| <!DOCTYPE html> |
| <html lang="en" class=""> |
| <head> |
| <meta charset="utf-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <title>{% block title %}ParaPilot — Illinois Divorce Navigator{% endblock %}</title> |
| <meta name="description" content="ParaPilot: a grounded, cited 'legal GPS' for the Illinois divorce process. Legal information, not legal advice." /> |
|
|
| |
| <script src="/static/vendor/tailwind.js"></script> |
| <script> |
| tailwind.config = { |
| darkMode: "class", |
| theme: { |
| extend: { |
| fontFamily: { |
| sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"], |
| serif: ["ui-serif", "Iowan Old Style", "Palatino Linotype", "Palatino", "Georgia", "serif"], |
| }, |
| colors: { |
| brand: { |
| 50: "#f0f3f8", 100: "#dde6f0", 200: "#bccddf", 300: "#93aece", |
| 400: "#6385ad", 500: "#3f618f", 600: "#2f4a73", 700: "#26405f", |
| 800: "#1f3350", 900: "#1a2a44", |
| }, |
| }, |
| }, |
| }, |
| }; |
| </script> |
| <script src="/static/vendor/htmx.min.js" defer></script> |
|
|
| |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" /> |
|
|
| <link rel="stylesheet" href="/static/css/app.css" /> |
| <script src="/static/js/app.js"></script> |
| </head> |
| <body class="pp-bg min-h-screen bg-[#f7f3ea] text-[#1f2a44] dark:bg-[#12161f] dark:text-[#e9e3d6] antialiased"> |
|
|
| {% include "partials/nav.html" %} |
|
|
| <main class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8 py-8"> |
| {% block content %}{% endblock %} |
| </main> |
|
|
| {% include "partials/footer.html" %} |
| {% include "partials/disclaimer_modal.html" %} |
|
|
| </body> |
| </html> |
|
|