202 lines
7.2 KiB
TypeScript
202 lines
7.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import { Home, Star } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
export default function RoomsPage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "home" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Rooms", id: "rooms" },
|
|
{ name: "Amenities", id: "amenities" },
|
|
{ name: "Reviews", id: "reviews" },
|
|
{ name: "Contact", id: "contact" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Quick Links",
|
|
items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "About Us", href: "/" },
|
|
{ label: "Rooms", href: "/rooms" },
|
|
{ label: "Amenities", href: "/amenities" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact Info",
|
|
items: [
|
|
{ label: "+91 97599 10971", href: "tel:+919759910971" },
|
|
{ label: "Star Chowraha, Rah-e-Raza", href: "https://maps.google.com/?q=Star+Chowraha+Rampur" },
|
|
{ label: "Rampur, Uttar Pradesh 244901", href: "#" },
|
|
{ label: "Check-in: 12:00 PM", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Policies",
|
|
items: [
|
|
{ label: "Cancellation Policy", href: "#" },
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms & Conditions", href: "#" },
|
|
{ label: "Booking Terms", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect",
|
|
items: [
|
|
{ label: "WhatsApp Us", href: "https://wa.me/919759910971" },
|
|
{ label: "Follow on Facebook", href: "#" },
|
|
{ label: "Follow on Instagram", href: "#" },
|
|
{ label: "Rate Us", href: "#" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="small"
|
|
sizing="largeSmall"
|
|
background="circleGradient"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Hotel Krishna"
|
|
navItems={navItems}
|
|
button={{
|
|
text: "Book Now",
|
|
href: "#contact",
|
|
}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="rooms-hero" data-section="rooms-hero">
|
|
<HeroLogoBillboardSplit
|
|
logoText="होटल कृष्णा"
|
|
description="Discover our carefully curated room categories, each designed to provide exceptional comfort and value for every type of traveler. From intimate stays to family adventures, find your perfect accommodation."
|
|
background={{ variant: "plain" }}
|
|
buttons={[
|
|
{
|
|
text: "Book Your Room",
|
|
href: "#contact",
|
|
},
|
|
{
|
|
text: "Call Now: +91 97599 10971",
|
|
href: "tel:+919759910971",
|
|
},
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
layoutOrder="default"
|
|
imageSrc="http://img.b2bpic.net/free-photo/open-laptop-bed_171337-12759.jpg?_wi=1"
|
|
imageAlt="Luxury Hotel Room - Hotel Krishna"
|
|
mediaAnimation="blur-reveal"
|
|
frameStyle="card"
|
|
/>
|
|
</div>
|
|
|
|
<div id="rooms-products" data-section="rooms-products">
|
|
<ProductCardOne
|
|
title="Our Room Categories"
|
|
description="Choose from our thoughtfully designed room categories, each offering exceptional comfort and value. Whether traveling alone, with family, or as a couple, we have the perfect space for you."
|
|
tag="Accommodations"
|
|
tagIcon={Home}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{
|
|
id: "deluxe",
|
|
name: "Deluxe Room",
|
|
price: "Starting at ₹2,500",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/open-laptop-bed_171337-12759.jpg?_wi=2",
|
|
imageAlt: "Deluxe Room - Hotel Krishna",
|
|
},
|
|
{
|
|
id: "super-deluxe",
|
|
name: "Super Deluxe Room",
|
|
price: "Starting at ₹3,500",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-caucasian-female-with-long-blonde-hair-nice-face-bright-earrings-white-suit_132075-9619.jpg",
|
|
imageAlt: "Super Deluxe Room - Hotel Krishna",
|
|
},
|
|
{
|
|
id: "family",
|
|
name: "Family Room",
|
|
price: "Starting at ₹4,500",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-pillow-fight_23-2149242567.jpg",
|
|
imageAlt: "Family Room - Hotel Krishna",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="rooms-testimonials" data-section="rooms-testimonials">
|
|
<TestimonialCardOne
|
|
title="What Our Guests Say"
|
|
description="Real experiences from real travelers. Discover why guests consistently choose Hotel Krishna for comfort, service, and authentic hospitality."
|
|
tag="Guest Reviews"
|
|
tagIcon={Star}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1",
|
|
name: "Priya Sharma",
|
|
role: "Business Traveler",
|
|
company: "Tech Professional",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Rajesh Kumar",
|
|
role: "Frequent Visitor",
|
|
company: "Sales Executive",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/friendly-middle-aged-businessman-cafe-counter_1262-1833.jpg",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "Anita & Family",
|
|
role: "Family Travel",
|
|
company: "Holiday Makers",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-friends-walking-outdoors-beach_171337-15634.jpg",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "Vikram Desai",
|
|
role: "Couple Getaway",
|
|
company: "Travelers",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/romantic-breakfast-wooden-tray-bed_23-2148012260.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="होटल कृष्णा"
|
|
columns={footerColumns}
|
|
copyrightText="© 2025 Hotel Krishna | Premium Hospitality in Rampur"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |