Update src/app/about/page.tsx

This commit is contained in:
2026-04-03 13:27:37 +00:00
parent 2721b76721
commit 5d3cbb6219

View File

@@ -3,53 +3,45 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { History } from "lucide-react";
import MediaAbout from '@/components/sections/about/MediaAbout';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="floatingGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="light"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "/rooms" },
{ name: "Dining", id: "/dining" },
{ name: "Amenities", id: "/amenities" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="RSDdison Hotel"
/>
<main className="pt-32">
<TestimonialAboutCard
tag="Our Story"
title="A Century of Serenity"
description="Founded in 1924, RSDdison Hotel began as a small sanctuary deep within the forest."
subdescription="Through decades, we have preserved the harmony between modern luxury and natural surroundings."
icon={History}
imageSrc="http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694098.jpg?_wi=1"
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Amenities", id: "/amenities" }, { name: "Rooms", id: "/rooms" }, { name: "Dining", id: "/dining" }, { name: "Gallery", id: "/gallery" }]}
brandName="RSDdison Hotel"
/>
</div>
<main>
<div id="about" data-section="about">
<MediaAbout
title="A Century of Serenity"
description="Founded in 1924, RSDdison Hotel began as a small sanctuary deep within the forest. Through decades, we have preserved the harmony between modern luxury and natural surroundings."
tag="Our Story"
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694098.jpg?_wi=1"
/>
</div>
</main>
<FooterBaseCard
logoText="RSDdison Hotel"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Rooms", href: "/rooms" }, { label: "Dining", href: "/dining" }] },
{ title: "Experience", items: [{ label: "Amenities", href: "/amenities" }, { label: "Gallery", href: "/gallery" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="RSDdison Hotel"
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { title: "Experience", items: [{ label: "Rooms", href: "/rooms" }, { label: "Dining", href: "/dining" }, { label: "Amenities", href: "/amenities" }, { label: "Gallery", href: "/gallery" }] }]}
/>
</div>
</ThemeProvider>
);
}