Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
108
src/app/business-services/page.tsx
Normal file
108
src/app/business-services/page.tsx
Normal file
@@ -0,0 +1,108 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function BusinessServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="mediumLarge"
|
||||
background="grid"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "#home" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Rooms", id: "#rooms" },
|
||||
{ name: "Amenities", id: "#amenities" },
|
||||
{ name: "Business Services", id: "/business-services" },
|
||||
{ name: "Rates", id: "#rates" },
|
||||
{ name: "Reviews", id: "#reviews" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
logoAlt="Americas Best Value Inn logo"
|
||||
brandName="ABVI Lincoln"
|
||||
button={{ text: "Book Now", href: "#rates" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="business-services" data-section="business-services">
|
||||
<FeatureCardTwentyEight
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Corporate Offerings & Business Services"
|
||||
description="Tailored solutions to meet the unique needs of your business travelers and corporate events, ensuring a productive and comfortable stay."
|
||||
tag="Business Solutions"
|
||||
features={[
|
||||
{
|
||||
id: "bs1", title: "Group Booking Discounts", subtitle: "Special rates for teams and events", category: "Savings", value: "20% Off"
|
||||
},
|
||||
{
|
||||
id: "bs2", title: "Customized Corporate Rates", subtitle: "Negotiated pricing for frequent business stays", category: "Flexibility", value: "Contract"
|
||||
},
|
||||
{
|
||||
id: "bs3", title: "Meeting & Event Spaces", subtitle: "Dedicated areas for your corporate gatherings", category: "Facilities", value: "Available"
|
||||
},
|
||||
{
|
||||
id: "bs4", title: "Airport Shuttle Service", subtitle: "Complimentary transport for your business guests", category: "Convenience", value: "Free"
|
||||
},
|
||||
{
|
||||
id: "bs5", title: "Business Center Access", subtitle: "Workstations, printing, and essential office services", category: "Productivity", value: "Included"
|
||||
},
|
||||
{
|
||||
id: "bs6", title: "Flexible Cancellation", subtitle: "Adapt to changing schedules with ease", category: "Peace of Mind", value: "Policy Applied"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-city-background_74190-4268.jpg"
|
||||
imageAlt="City skyline at dusk"
|
||||
logoText="Americas Best Value Inn"
|
||||
columns={[
|
||||
{
|
||||
title: "About Us", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Amenities", href: "#amenities" },
|
||||
{ label: "Guest Reviews", href: "#reviews" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Your Stay", items: [
|
||||
{ label: "Room Types", href: "#rooms" },
|
||||
{ label: "Best Rates", href: "#rates" },
|
||||
{ label: "FAQs", href: "#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Book Now", href: "#rates" },
|
||||
{ label: "Call Us: +1 402-475-3211", href: "tel:+14024753211" },
|
||||
{ label: "Directions", href: "https://maps.app.goo.gl/3wA2y7k8Y4Z5Z6X7A" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Americas Best Value Inn. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -41,6 +41,8 @@ export default function LandingPage() {
|
||||
name: "Rooms", id: "#rooms"},
|
||||
{
|
||||
name: "Amenities", id: "#amenities"},
|
||||
{
|
||||
name: "Business Services", id: "/business-services"},
|
||||
{
|
||||
name: "Rates", id: "#rates"},
|
||||
{
|
||||
@@ -337,4 +339,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user