+layout.svelte 505 B

123456789101112131415161718
  1. <script>
  2. import Header from '../components/Header.svelte';
  3. import '../app.css';
  4. let year = new Date().getFullYear();
  5. </script>
  6. <div class="flex flex-col min-h-screen bg-gray-100 dark:bg-gray-950 text-gray-900 dark:text-gray-100">
  7. <Header />
  8. <main class="flex-1 flex flex-col px-4 py-6 w-full max-w-4xl mx-auto box-border">
  9. <slot />
  10. </main>
  11. <footer class="flex flex-col items-center justify-center py-3 text-sm text-gray-500 dark:text-gray-400">
  12. <p>© {year} Lhamacorp</p>
  13. </footer>
  14. </div>