7 Commits

Author SHA1 Message Date
1a977ed20c Merge version_3 into main
Merge version_3 into main
2026-05-28 12:11:24 +00:00
36a8448e39 Update src/app/page.tsx 2026-05-28 12:11:21 +00:00
7c7e600141 Update src/app/business-services/page.tsx 2026-05-28 12:11:20 +00:00
563a1e5ff8 Merge version_3 into main
Merge version_3 into main
2026-05-28 12:11:00 +00:00
b8af4295a9 Update src/app/page.tsx 2026-05-28 12:10:54 +00:00
18ef5f2ab7 Add src/app/business-services/page.tsx 2026-05-28 12:10:53 +00:00
e6108256a9 Merge version_2 into main
Merge version_2 into main
2026-05-28 12:00:42 +00:00
2 changed files with 112 additions and 2 deletions

View 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?_wi=2"
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>
);
}

View File

@@ -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"},
{
@@ -296,7 +298,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-city-background_74190-4268.jpg"
imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-city-background_74190-4268.jpg?_wi=1"
imageAlt="City skyline at dusk"
logoText="Americas Best Value Inn"
columns={[
@@ -337,4 +339,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}