CoolFace
Apppublic

NetSni92/resolvewise-resolution-hub

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
resolutions.html78 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en" class="undefined">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Resolutions - ResolveWise</title>7    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://unpkg.com/feather-icons"></script>10    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>11    <script>12        tailwind.config = {13            darkMode: 'class',14            theme: {15                extend: {16                    colors: {17                        undefined: {18                            50: '#f0f9ff',19                            100: '#e0f2fe',20                            200: '#bae6fd',21                            300: '#7dd3fc',22                            400: '#38bdf8',23                            500: '#0ea5e9',24                            600: '#0284c7',25                            700: '#0369a1',26                            800: '#075985',27                            900: '#0c4a6e',28                        }29                    }30                }31            }32        }33    </script>34    <style>35        .resolution-card:hover {36            transform: translateY(-2px);37            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);38        }39        .filter-active {40            background-color: rgb(14 165 233);41            color: white;42        }43    </style>44</head>45<body class="bg-gray-50 dark:bg-gray-900 min-h-screen transition-colors duration-300">46    <!-- Navigation -->47    <nav class="bg-undefined-600 dark:bg-undefined-800 text-white shadow-lg">48        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">49            <div class="flex justify-between h-16">50                <div class="flex items-center">51                    <div class="flex-shrink-0 flex items-center">52                        <i data-feather="shield" class="h-8 w-8 text-undefined-300"></i>53                        <span class="ml-2 text-xl font-bold">ResolveWise</span>54                    </div>55                    <div class="hidden md:ml-6 md:flex md:space-x-4">56                        <a href="index.html" class="text-undefined-100 hover:bg-undefined-500 px-3 py-2 rounded-md text-sm font-medium">Dashboard</a>57                        <a href="resolutions.html" class="bg-undefined-700 px-3 py-2 rounded-md text-sm font-medium">Resolutions</a>58                        <a href="analytics.html" class="text-undefined-100 hover:bg-undefined-500 px-3 py-2 rounded-md text-sm font-medium">Analytics</a>59                        <a href="team.html" class="text-undefined-100 hover:bg-undefined-500 px-3 py-2 rounded-md text-sm font-medium">Team</a>60                    </div>61                </div>62                <div class="flex items-center space-x-4">63                    <button id="theme-toggle" class="p-2 rounded-full hover:bg-undefined-500">64                        <i data-feather="moon" class="hidden dark:block"></i>65                        <i data-feather="sun" class="block dark:hidden"></i>66                    </button>67                    <div class="relative">68                        <img class="h-8 w-8 rounded-full bg-undefined-400" src="http://static.photos/people/200x200/1" alt="Profile">69                    </div>70                </div>71            </div>72        </div>73    </nav>74 75    <!-- Main Content -->76    <77</body>78</html>