diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 41547f1..a2fc3eb 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -2,14 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
-import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
-import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
+import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
-import { Diamond, ShieldCheck, Sparkles } from "lucide-react";
+import { Diamond, Sparkles, ShieldCheck } from 'lucide-react';
-export default function LandingPage() {
+export default function AboutPage() {
return (
@@ -62,15 +49,11 @@ export default function LandingPage() {
useInvertedBackground={false}
heading={[
{
- type: "text",
- content: "Our Story: The Genesis of LAMA",
- },
+ type: "text", content: "Our Story: The Genesis of LAMA"},
]}
buttons={[
{
- text: "Explore Our History",
- href: "#",
- },
+ text: "Explore Our History", href: "#"},
]}
/>
@@ -83,19 +66,13 @@ export default function LandingPage() {
features={[
{
icon: Diamond,
- title: "Unrivaled Quality",
- description: "We source the finest materials and employ exquisite techniques to ensure every garment is a masterpiece.",
- },
+ title: "Unrivaled Quality", description: "We source the finest materials and employ exquisite techniques to ensure every garment is a masterpiece."},
{
icon: Sparkles,
- title: "Innovative Design",
- description: "Pushing the boundaries of fashion with creative designs that are both modern and timeless.",
- },
+ title: "Innovative Design", description: "Pushing the boundaries of fashion with creative designs that are both modern and timeless."},
{
icon: ShieldCheck,
- title: "Ethical Luxury",
- description: "Committed to sustainable practices and ethical production, for luxury with a conscience.",
- },
+ title: "Ethical Luxury", description: "Committed to sustainable practices and ethical production, for luxury with a conscience."},
]}
title="Our Vision & Values"
description="At LAMA, we are driven by a commitment to excellence, innovation, and an unwavering passion for artistry. Our values guide every creation, ensuring uncompromising quality."
@@ -104,124 +81,22 @@ export default function LandingPage() {
-
-
);