diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..ec6fe35 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import RoomReservationPage from "@/pages/RoomReservationPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3f5cfb7..4dc5b21 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -34,7 +34,9 @@ export default function Layout() { { "name": "Contact", "href": "#contact" - } + }, + { name: "Room Reservation", href: "/room-reservation" }, + ]; return ( diff --git a/src/pages/RoomReservationPage.tsx b/src/pages/RoomReservationPage.tsx new file mode 100644 index 0000000..fbe5309 --- /dev/null +++ b/src/pages/RoomReservationPage.tsx @@ -0,0 +1,38 @@ +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AvatarGroup from "@/components/ui/AvatarGroup"; +import { Check } from "lucide-react"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +export default function RoomReservationPage() { + return ( + <> +
+

Room Rates

Standard Room

6,000 DZD/ntA cozy and comfortable room perfect for solo travelers or short business trips.
1 Queen Bed
+
Free Wi-Fi
+
Air Conditioning
+
En-suite Bathroom
+

Deluxe Room

9,000 DZD/ntSpacious and elegantly furnished, ideal for couples or extended stays.
1 King Bed
+
City View
+
Mini-bar
+
Free Breakfast
+

Executive Suite

15,000 DZD/ntOur premium offering with a separate living area for ultimate comfort and luxury.
Separate Living Area
+
Premium Amenities
+
Room Service
+
Late Check-out
+
+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..4ed5653 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/room-reservation', label: 'Room Reservation', pageFile: 'RoomReservationPage' }, ];