diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 3b22ca4..3c83efb 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -6,6 +6,7 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { TrendingUp, Star } from "lucide-react";
+import Link from "next/link";
export default function AboutPage() {
return (
@@ -15,7 +16,7 @@ export default function AboutPage() {
borderRadius="soft"
contentWidth="compact"
sizing="largeSizeMediumTitles"
- background="aurora"
+ background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
@@ -30,26 +31,27 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" }
]}
button={{
- text: "Book Now",
- href: "https://booking.serenityhotels.com"
+ text: "Book Now", href: "https://booking.serenityhotels.com"
}}
/>
+
+ Home
+ About
+ Contact
+
@@ -66,33 +68,18 @@ export default function AboutPage() {
animationType="slide-up"
metrics={[
{
- id: "1",
- value: "1998",
- title: "Founded with Vision",
- items: [
- "Started as a boutique hotel",
- "Family-owned hospitality dream",
- "Focus on personal service"
+ id: "1", value: "1998", title: "Founded with Vision", items: [
+ "Started as a boutique hotel", "Family-owned hospitality dream", "Focus on personal service"
]
},
{
- id: "2",
- value: "2M+",
- title: "Guests Welcomed",
- items: [
- "From 195 countries",
- "Creating memories since day one",
- "Building lifelong relationships"
+ id: "2", value: "2M+", title: "Guests Welcomed", items: [
+ "From 195 countries", "Creating memories since day one", "Building lifelong relationships"
]
},
{
- id: "3",
- value: "150+",
- title: "Awards Received",
- items: [
- "International hospitality recognition",
- "Sustainability leadership",
- "Service excellence honors"
+ id: "3", value: "150+", title: "Awards Received", items: [
+ "International hospitality recognition", "Sustainability leadership", "Service excellence honors"
]
}
]}
@@ -103,8 +90,7 @@ export default function AboutPage() {