File size: 2,591 Bytes
b750700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hours – Italias Romanos Too</title>
    <link rel="icon" type="image/x-icon" href="http://static.photos/food/64x64/42">
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-gray-100 transition-colors">
    <custom-header></custom-header>

    <main class="max-w-3xl mx-auto px-4 py-10">
        <section class="bg-white dark:bg-gray-800 rounded-2xl shadow-lg p-6 md:p-8">
            <h1 class="text-3xl md:text-4xl font-extrabold mb-6">Hours</h1>
            <ul class="space-y-3 text-lg">
                <li class="flex justify-between"><span>Monday</span><span class="font-semibold text-red-500">Closed</span></li>
                <li class="flex justify-between"><span>Tuesday</span><span class="font-semibold">4:00 PM – 8:00 PM</span></li>
                <li class="flex justify-between"><span>Wednesday</span><span class="font-semibold">4:00 PM – 8:00 PM</span></li>
                <li class="flex justify-between"><span>Thursday</span><span class="font-semibold">4:00 PM – 8:00 PM</span></li>
                <li class="flex justify-between"><span>Friday</span><span class="font-semibold">4:00 PM – 9:00 PM</span></li>
                <li class="flex justify-between"><span>Saturday</span><span class="font-semibold">9:00 AM – 9:00 PM <span class="text-xs text-gray-500 dark:text-gray-400">(Breakfast 9–11 AM)</span></span></li>
                <li class="flex justify-between"><span>Sunday</span><span class="font-semibold">9:00 AM – 8:00 PM <span class="text-xs text-gray-500 dark:text-gray-400">(Breakfast 9–11 AM)</span></span></li>
            </ul>
            <div class="mt-6 p-4 rounded-xl bg-orange-50 dark:bg-orange-900/20 text-center">
                <i data-feather="info" class="w-6 h-6 mx-auto text-orange-500 mb-2"></i>
                <p class="text-sm text-gray-700 dark:text-gray-300">Breakfast served Saturday & Sunday 9–11 AM only</p>
            </div>
        </section>
    </main>

    <custom-footer></custom-footer>

    <script src="components/header.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>feather.replace();</script>
</body>
</html>