| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>The Fox & Hounds Pub - Tormartin</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| </head> |
| <body> |
| <custom-navbar></custom-navbar> |
| |
| <main> |
| |
| <section class="relative h-screen flex items-center justify-center"> |
| <div class="absolute inset-0 bg-black opacity-50"></div> |
| <div class="relative z-10 text-center text-white px-4"> |
| <h1 class="text-5xl md:text-7xl font-bold mb-6">The Fox & Hounds</h1> |
| <p class="text-xl md:text-2xl mb-8">Traditional Pub in the Heart of Tormartin</p> |
| <a href="#menu" class="bg-amber-700 hover:bg-amber-800 text-white font-bold py-3 px-8 rounded-full text-lg transition duration-300">View Our Menu</a> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-20 bg-amber-50"> |
| <div class="container mx-auto px-4"> |
| <div class="flex flex-col md:flex-row items-center gap-12"> |
| <div class="md:w-1/2"> |
| <img src="http://static.photos/pub/640x360/123" alt="The Fox & Hounds Pub" class="rounded-lg shadow-lg w-full"> |
| </div> |
| <div class="md:w-1/2"> |
| <h2 class="text-4xl font-bold mb-6 text-amber-900">Welcome to Our Pub</h2> |
| <p class="text-lg mb-6 text-gray-700">Nestled in the charming village of Tormartin, The Fox & Hounds has been serving locals and visitors alike for generations. Our cozy atmosphere, traditional decor, and warm hospitality make us the perfect spot to unwind after a long day.</p> |
| <p class="text-lg mb-6 text-gray-700">Whether you're looking for a hearty meal, a refreshing pint, or just a friendly place to chat with neighbors, we've got you covered. Our menu features classic British pub fare made with locally-sourced ingredients whenever possible.</p> |
| <div class="flex flex-wrap gap-4"> |
| <div class="flex items-center"> |
| <div class="bg-amber-500 w-3 h-3 rounded-full mr-2"></div> |
| <span>Fresh Local Ingredients</span> |
| </div> |
| <div class="flex items-center"> |
| <div class="bg-amber-500 w-3 h-3 rounded-full mr-2"></div> |
| <span>Traditional Atmosphere</span> |
| </div> |
| <div class="flex items-center"> |
| <div class="bg-amber-500 w-3 h-3 rounded-full mr-2"></div> |
| <span>Friendly Staff</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="menu" class="py-20"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-4xl font-bold text-center mb-16 text-amber-900">Our Menu</h2> |
| |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> |
| <div> |
| <h3 class="text-2xl font-bold mb-6 text-amber-800 border-b-2 border-amber-500 pb-2">Main Courses</h3> |
| <div class="space-y-6"> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Traditional Fish & Chips</h4> |
| <p class="text-gray-600">Fresh cod in crispy batter served with chunky chips and mushy peas</p> |
| </div> |
| <span class="font-bold text-amber-700">£12.95</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Bangers & Mash</h4> |
| <p class="text-gray-600">Homemade sausages with creamy mashed potatoes and onion gravy</p> |
| </div> |
| <span class="font-bold text-amber-700">£11.50</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Beef & Ale Pie</h4> |
| <p class="text-gray-600">Slow-cooked beef in rich ale sauce with shortcrust pastry</p> |
| </div> |
| <span class="font-bold text-amber-700">£14.95</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Grilled Salmon</h4> |
| <p class="text-gray-600">Fresh salmon fillet with lemon butter sauce and seasonal vegetables</p> |
| </div> |
| <span class="font-bold text-amber-700">£16.50</span> |
| </div> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-2xl font-bold mb-6 text-amber-800 border-b-2 border-amber-500 pb-2">Drinks</h3> |
| <div class="space-y-6"> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Local Craft Beer</h4> |
| <p class="text-gray-600">Rotating selection from regional breweries</p> |
| </div> |
| <span class="font-bold text-amber-700">£4.20</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Classic Cider</h4> |
| <p class="text-gray-600">West Country cider on draft</p> |
| </div> |
| <span class="font-bold text-amber-700">£3.90</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">House Wine</h4> |
| <p class="text-gray-600">Red or White - Glass</p> |
| </div> |
| <span class="font-bold text-amber-700">£4.50</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Premium Spirits</h4> |
| <p class="text-gray-600">Selection of whiskeys, gins, and vodkas</p> |
| </div> |
| <span class="font-bold text-amber-700">£5.50</span> |
| </div> |
| </div> |
| |
| <h3 class="text-2xl font-bold mt-12 mb-6 text-amber-800 border-b-2 border-amber-500 pb-2">Desserts</h3> |
| <div class="space-y-6"> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Sticky Toffee Pudding</h4> |
| <p class="text-gray-600">Warm sponge cake with toffee sauce and vanilla ice cream</p> |
| </div> |
| <span class="font-bold text-amber-700">£6.95</span> |
| </div> |
| <div class="flex justify-between items-start pb-4 border-b border-gray-200"> |
| <div> |
| <h4 class="font-bold text-lg">Cheesecake</h4> |
| <p class="text-gray-600">Creamy New York style with berry compote</p> |
| </div> |
| <span class="font-bold text-amber-700">£6.50</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="events" class="py-20 bg-amber-100"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-4xl font-bold text-center mb-16 text-amber-900">Upcoming Events</h2> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <img src="http://static.photos/music/320x240/456" alt="Live Music Night" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Live Music Night</h3> |
| <p class="text-gray-600 mb-4">Every Friday at 8pm</p> |
| <p class="mb-4">Join us for an evening of acoustic performances by local artists. Great music, great company, and great drinks!</p> |
| <a href="#" class="text-amber-700 font-semibold hover:underline">Learn More</a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <img src="http://static.photos/quiz/320x240/789" alt="Pub Quiz" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Pub Quiz</h3> |
| <p class="text-gray-600 mb-4">Wednesdays at 7:30pm</p> |
| <p class="mb-4">Test your knowledge every Wednesday evening. Teams of up to 6 people. Prizes for the winners!</p> |
| <a href="#" class="text-amber-700 font-semibold hover:underline">Learn More</a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <img src="http://static.photos/seasonal/320x240/101" alt="Seasonal Specials" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Seasonal Specials</h3> |
| <p class="text-gray-600 mb-4">Throughout the year</p> |
| <p class="mb-4">Celebrate holidays with our special menus and themed events. Check back regularly for updates!</p> |
| <a href="#" class="text-amber-700 font-semibold hover:underline">Learn More</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20"> |
| <div class="container mx-auto px-4"> |
| <div class="flex flex-col lg:flex-row gap-12"> |
| <div class="lg:w-1/2"> |
| <h2 class="text-4xl font-bold mb-8 text-amber-900">Visit Us</h2> |
| <div class="space-y-6"> |
| <div class="flex items-start"> |
| <div class="bg-amber-100 p-3 rounded-full mr-4"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-amber-700" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z" /> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z" /> |
| </svg> |
| </div> |
| <div> |
| <h3 class="font-bold text-lg mb-1">Address</h3> |
| <p class="text-gray-700">12 Main Street<br>Tormartin<br>County Antrim<br>BT41 2AB</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-amber-100 p-3 rounded-full mr-4"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-amber-700" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z" /> |
| </svg> |
| </div> |
| <div> |
| <h3 class="font-bold text-lg mb-1">Phone</h3> |
| <p class="text-gray-700">+44 28 9123 4567</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-amber-100 p-3 rounded-full mr-4"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-amber-700" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" /> |
| </svg> |
| </div> |
| <div> |
| <h3 class="font-bold text-lg mb-1">Opening Hours</h3> |
| <p class="text-gray-700"> |
| Monday - Thursday: 11am - 11pm<br> |
| Friday - Saturday: 11am - 12am<br> |
| Sunday: 12pm - 10pm |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="lg:w-1/2"> |
| <div class="bg-white rounded-lg shadow-lg p-8"> |
| <h3 class="text-2xl font-bold mb-6 text-amber-900">Send Us a Message</h3> |
| <form> |
| <div class="mb-4"> |
| <label class="block text-gray-700 mb-2" for="name">Name</label> |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"> |
| </div> |
| <div class="mb-4"> |
| <label class="block text-gray-700 mb-2" for="email">Email</label> |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"> |
| </div> |
| <div class="mb-4"> |
| <label class="block text-gray-700 mb-2" for="message">Message</label> |
| <textarea id="message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"></textarea> |
| </div> |
| <button type="submit" class="w-full bg-amber-700 hover:bg-amber-800 text-white font-bold py-3 px-4 rounded-lg transition duration-300">Send Message</button> |
| </form> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |