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 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