Update src/app/about/page.tsx

This commit is contained in:
2026-03-04 10:40:50 +00:00
parent 6f22a4bb8f
commit 0770b37d41

View File

@@ -10,8 +10,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
export default function AboutPage() {
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Tanning Packages", href: "/pricing" },
{ label: "Memberships", href: "/pricing" },
{ label: "Book Now", href: "/booking" },
@@ -19,8 +18,7 @@ export default function AboutPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "FAQs", href: "/" },
@@ -28,8 +26,7 @@ export default function AboutPage() {
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Google Reviews", href: "https://google.com/maps" },
@@ -84,19 +81,11 @@ export default function AboutPage() {
<FeatureCardSixteen
negativeCard={{
items: [
"Old, unreliable sunbeds",
"Inconsistent results",
"Poor hygiene standards",
"Untrained staff",
],
"Old, unreliable sunbeds", "Inconsistent results", "Poor hygiene standards", "Untrained staff"],
}}
positiveCard={{
items: [
"State-of-the-art sunbeds with advanced technology",
"Guaranteed flawless, even tanning results",
"Rigorous hygiene and safety standards",
"Friendly, professionally trained staff",
],
"State-of-the-art sunbeds with advanced technology", "Guaranteed flawless, even tanning results", "Rigorous hygiene and safety standards", "Friendly, professionally trained staff"],
}}
animationType="slide-up"
title="What Makes Us Different"
@@ -132,4 +121,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}