diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..8159586
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,54 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import TextAbout from '@/components/sections/about/TextAbout';
+import FooterBase from '@/components/sections/footer/FooterBase';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 91e091f..9c250f4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -28,26 +28,11 @@ export default function LandingPage() {
@@ -55,92 +40,33 @@ export default function LandingPage() {
-
-
-
-
@@ -150,24 +76,8 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
- negativeCard={{
- items: [
- "Consultation Required",
- "Hair Correction",
- "Advanced Treatments",
- "Extension Maintenance",
- "Root Touch-ups",
- ],
- }}
- positiveCard={{
- items: [
- "Precision Cuts & Styling",
- "Bespoke Balayage & Color",
- "Bridal & Formal Styling",
- "Deep Conditioning Treatments",
- "Custom Glossing",
- ],
- }}
+ negativeCard={{ items: ["Consultation Required", "Hair Correction", "Advanced Treatments", "Extension Maintenance", "Root Touch-ups"] }}
+ positiveCard={{ items: ["Precision Cuts & Styling", "Bespoke Balayage & Color", "Bridal & Formal Styling", "Deep Conditioning Treatments", "Custom Glossing"] }}
title="Elevated Services"
description="From precision cuts to bespoke color transformations, discover your next look."
/>
@@ -179,41 +89,11 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
- {
- id: "1",
- name: "Sarah M.",
- handle: "@sarah_m",
- testimonial: "Absolutely the best experience I've ever had at a salon. My color is exactly what I wanted.",
- imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg",
- },
- {
- id: "2",
- name: "Jordan L.",
- handle: "@jordan_l",
- testimonial: "I've been coming here for two years and I'll never go anywhere else. They're incredibly talented.",
- imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg",
- },
- {
- id: "3",
- name: "Priya K.",
- handle: "@priya_k",
- testimonial: "Walked out feeling like a new person. Worth every penny.",
- imageSrc: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg",
- },
- {
- id: "4",
- name: "Alex R.",
- handle: "@alex_r",
- testimonial: "The atmosphere is so relaxing and the stylists really listen to you.",
- imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-talking-phone-with-her-friend_1153-11.jpg",
- },
- {
- id: "5",
- name: "Elena D.",
- handle: "@elena_d",
- testimonial: "My hair has never looked healthier. Truly skilled professionals.",
- imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-young-caucasian-girl-with-wide-smile-looks-camera-blurred-background-brunette-with-long-hair-wears-green-shirt-emotions-people-concept_197531-32280.jpg",
- },
+ { id: "1", name: "Sarah M.", handle: "@sarah_m", testimonial: "Absolutely the best experience I've ever had at a salon. My color is exactly what I wanted.", imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg" },
+ { id: "2", name: "Jordan L.", handle: "@jordan_l", testimonial: "I've been coming here for two years and I'll never go anywhere else. They're incredibly talented.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg" },
+ { id: "3", name: "Priya K.", handle: "@priya_k", testimonial: "Walked out feeling like a new person. Worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg" },
+ { id: "4", name: "Alex R.", handle: "@alex_r", testimonial: "The atmosphere is so relaxing and the stylists really listen to you.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-talking-phone-with-her-friend_1153-11.jpg" },
+ { id: "5", name: "Elena D.", handle: "@elena_d", testimonial: "My hair has never looked healthier. Truly skilled professionals.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-young-caucasian-girl-with-wide-smile-looks-camera-blurred-background-brunette-with-long-hair-wears-green-shirt-emotions-people-concept_197531-32280.jpg" },
]}
title="What Our Clients Say"
description="Join our community of happy, confident clients."
@@ -223,71 +103,20 @@ export default function LandingPage() {