opaolilo/sqlite-data-viz-delight
0
1<!DOCTYPE html>2<html lang="pt-br" class="dark">3<head>4 <meta charset="UTF-8" />5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>Dashboard SQLite - Configuration</title>7 <script src="https://cdn.tailwindcss.com"></script>8 <script src="https://unpkg.com/feather-icons"></script>9 <link rel="stylesheet" href="style.css">10 <script>11 tailwind.config = {12 darkMode: 'class',13 theme: {14 extend: {15 colors: {16 primary: {17 500: '#6366f1',18 600: '#4f46e5',19 },20 secondary: {21 500: '#ec4899',22 600: '#db2777',23 }24 }25 }26 }27 }28 </script>29</head>30<body class="bg-gray-900 text-gray-100 min-h-screen">31 <custom-header></custom-header>32 <div class="container mx-auto px-4 py-8">33 <h1 class="text-3xl font-bold mb-8">Configuration</h1>34 <!-- Configuration content will go here -->35 </div>36 <script src="components/header.js"></script>37 <script>38 feather.replace();39 </script>40</body>41</html>