From 54ece2c2fb20ed44d7e9aaf2d1a21eec5bace2cf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:13:38 +0000 Subject: [PATCH 1/2] Add src/app/location/page.tsx --- src/app/location/page.tsx | 97 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 src/app/location/page.tsx diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx new file mode 100644 index 0000000..d4585ad --- /dev/null +++ b/src/app/location/page.tsx @@ -0,0 +1,97 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { MapPin, Phone, Clock } from "lucide-react"; + +export default function LocationPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From ad2119e9b0b5419182d04f3b980fdc7eb5f0756e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:13:38 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6cf0c60..76d9548 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni import TeamCardOne from "@/components/sections/team/TeamCardOne"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Scissors, Sparkles, Award, Star, Users, Briefcase } from "lucide-react"; +import { Scissors, Sparkles, Award, Star, Users, Briefcase, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Team", id: "team" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, + { name: "Location", id: "location" }, ]} /> -- 2.49.1