Spaces:
Running
Running
File size: 1,841 Bytes
a44ad63 ee4ff77 a44ad63 ee4ff77 9990b00 ee4ff77 8f7818b a44ad63 ee4ff77 |
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 50 51 52 53 54 55 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Penne Benne</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-white text-gray-900 p-6 space-y-10">
<header class="text-center">
<h1 class="text-5xl font-bold">Penne Benne</h1>
<p class="text-xl mt-2">Authentic Portuguese Cuisine in the Heart of Paris</p>
<div class="mt-6 flex justify-center">
<img
src="https://cdn.shopify.com/s/files/1/2729/7772/files/Francesinhas-TC-4_1024x1024.jpg?v=1642193820"
alt="Francesinha Dish"
class="w-full max-w-xl rounded-xl shadow-lg"
/>
</div>
</header>
<section class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="rounded-2xl shadow-md bg-white p-6">
<h2 class="text-2xl font-semibold mb-2">About Us</h2>
<p>
At Penne Benne, we bring the vibrant flavors of Portugal to Paris. Enjoy traditional dishes like Bacalhau à Brás, grilled sardines, and our signature pastéis de nata in a warm and cozy setting.
</p>
</div>
<div class="rounded-2xl shadow-md bg-white p-6">
<h2 class="text-2xl font-semibold mb-2">Location & Contact</h2>
<div class="flex items-center gap-2 mb-2">
<span>📍</span>
<span>15 Rue du Bouloi, 75001 Paris</span>
</div>
<div class="flex items-center gap-2">
<span>📞</span>
<span>+351 966 508 ***</span>
</div>
<div class="mt-4">
</div>
</div>
</section>
<section class="text-center">
<h2 class="text-2xl font-semibold mb-4">Reserve a Table</h2>
<button class="px-6 py-3 text-lg rounded-2xl shadow-md bg-blue-600 text-white">
Book Now
</button>
</section>
</body>
</html>
|