Spaces:
Running
Running
<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> | |