File size: 2,570 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
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About – 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-4xl 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-4">About Italias Romanos Too</h1>
            <p class="text-lg text-gray-700 dark:text-gray-300 leading-relaxed">
                Italias Romanos Too is your local spot for pizza and more in Kellner and Wisconsin Rapids, WI. Proudly serving our community with dine-in, pick-up, and delivery.
            </p>
            <div class="mt-6 grid grid-cols-1 sm:grid-cols-3 gap-4 text-center">
                <div class="bg-orange-50 dark:bg-orange-900/20 rounded-xl p-4">
                    <i data-feather="phone" class="w-8 h-8 mx-auto text-orange-500 mb-2"></i>
                    <p class="font-semibold">Call Ahead</p>
                    <p class="text-sm text-gray-600 dark:text-gray-400">(715) 423-8259</p>
                </div>
                <div class="bg-orange-50 dark:bg-orange-900/20 rounded-xl p-4">
                    <i data-feather="clock" class="w-8 h-8 mx-auto text-orange-500 mb-2"></i>
                    <p class="font-semibold">Fresh Daily</p>
                    <p class="text-sm text-gray-600 dark:text-gray-400">Tue–Sun</p>
                </div>
                <div class="bg-orange-50 dark:bg-orange-900/20 rounded-xl p-4">
                    <i data-feather="heart" class="w-8 h-8 mx-auto text-orange-500 mb-2"></i>
                    <p class="font-semibold">80% Recommend</p>
                    <p class="text-sm text-gray-600 dark:text-gray-400">23 Reviews</p>
                </div>
            </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>