-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<x-layout-page title="About Us"> | ||
<div class="container lg:max-w-4xl mx-auto px-3 py-12 md:py-32 space-y-3"> | ||
<p class="first-letter:uppercase first-letter:text-7xl first-letter:font-bold first-letter:mr-2 first-letter:float-left">Welcome to Hotel Hamlet, where luxury meets comfort at every destination. With multiple locations strategically placed to cater to diverse preferences, Hotel Hamlet is your go-to haven for an unforgettable stay. Whether you're traveling for business or leisure, our commitment to exceptional service and warm hospitality ensures that your experience is nothing short of extraordinary.</p> | ||
|
||
<p>At Hotel Hamlet, we believe in the art of relaxation. Each of our locations is designed to provide a unique ambiance, allowing you to choose the setting that best suits your needs. From bustling city centers to serene coastal retreats, we have carefully crafted our hotels to reflect the charm and character of their surroundings.</p> | ||
|
||
<p>Our rooms and suites are thoughtfully appointed to offer a blend of modern elegance and timeless comfort. Immerse yourself in plush bedding, indulge in our premium amenities, and enjoy the convenience of cutting-edge technology. Whether you're looking for a peaceful escape or a vibrant urban oasis, Hotel Hamlet is dedicated to exceeding your expectations.</p> | ||
|
||
<p>Dining at Hotel Hamlet is a culinary journey that celebrates local flavors and international cuisine. Our restaurants are curated to tantalize your taste buds, featuring expertly crafted menus that showcase the finest ingredients. Whether you're savoring a gourmet meal or grabbing a quick bite, our culinary offerings are designed to delight every palate.</p> | ||
|
||
<p>For those seeking wellness and rejuvenation, our hotels boast state-of-the-art fitness centers, soothing spa facilities, and refreshing pools. Take a moment to unwind and recharge, knowing that Hotel Hamlet is committed to your well-being.</p> | ||
|
||
<p>We understand the importance of seamless events and meetings, and our venues are equipped with the latest technology and professional staff to ensure your gatherings are a success. From intimate boardrooms to spacious banquet halls, Hotel Hamlet is your partner in creating memorable and impactful events.</p> | ||
|
||
<p>Our commitment to sustainability is reflected in our eco-friendly practices. Hotel Hamlet is dedicated to minimizing our environmental footprint and contributing to the well-being of the communities we serve.</p> | ||
|
||
<p>Discover the unparalleled hospitality of Hotel Hamlet across our various locations. Whether you're exploring a vibrant city, relaxing by the beach, or embracing the tranquility of the countryside, our hotels are designed to make every moment special. Welcome to Hotel Hamlet, where exceptional stays await at every turn.</p> | ||
</div> | ||
</x-layout-page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@extends('layouts.client') | ||
|
||
<header> | ||
<x-ui-navbar /> | ||
|
||
<div class="h-56 md:h-72 flex justify-center items-center bg-gray-300"> | ||
<h1 class="text-3xl md:text-5xl font-bold">{{ $title }}</h1> | ||
</div> | ||
</header> | ||
|
||
{{ $slot }} | ||
|
||
<x-ui-footer /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,6 @@ | |
</head> | ||
<body class="bg-gray-50"> | ||
@yield('content') | ||
@livewireScripts | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,4 @@ | |
}); | ||
}); | ||
|
||
Route::get('/', function () { | ||
return view('welcome'); | ||
}); | ||
Route::view('/about', 'client.about'); |