From 0ffe666bc611d1f3b1b876bfddb18b793cb7d554 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 14:52:09 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 45 +++------------------------------------------ 1 file changed, 3 insertions(+), 42 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c92c56..7693435 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { { name: "Home", id: "hero"}, { - name: "Services", id: "features"}, + name: "Services", id: "/services"}, { name: "About", id: "about"}, { @@ -50,7 +50,7 @@ export default function LandingPage() { description="Since 1991, Writing Assistance, Inc. (WAI) has connected industry leaders with the nation's premier writers and designers. Now part of Contiem, we deliver precision in technical, medical, and marketing documentation." buttons={[ { - text: "Explore Our Services", href: "#features"}, + text: "Explore Our Services", href: "/services"}, { text: "Contact Us", href: "#contact"}, ]} @@ -102,45 +102,6 @@ export default function LandingPage() { /> -
- -
-
); -} +} \ No newline at end of file -- 2.49.1 From fbfb3f08af413fa7b174fc74425a58aa0bd638d5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 14:52:10 +0000 Subject: [PATCH 2/2] Add src/app/services/page.tsx --- src/app/services/page.tsx | 63 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..8f6ccf5 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,63 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Activity, BookOpen, Code, FileText, PenTool } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1