From b9c07bf37bafaf2909e1d10c7951c70edd54e2cb Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 05:02:28 +0000 Subject: [PATCH] Add src/app/work/page.tsx --- src/app/work/page.tsx | 120 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 src/app/work/page.tsx diff --git a/src/app/work/page.tsx b/src/app/work/page.tsx new file mode 100644 index 0000000..ca7a8bd --- /dev/null +++ b/src/app/work/page.tsx @@ -0,0 +1,120 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles, Zap, Star } from "lucide-react"; + +export default function WorkPage() { + const navItems = [ + { name: "Home", id: "home" }, + { name: "Services", id: "services" }, + { name: "Work", id: "/work" }, + { name: "Contact", id: "/contact" } + ]; + + const footerColumns = [ + { + title: "Services", items: [ + { label: "Web Development", href: "/work" }, + { label: "Marketing", href: "/work" }, + { label: "Design", href: "/work" }, + { label: "Software Development", href: "/work" } + ] + }, + { + title: "Company", items: [ + { label: "Home", href: "/" }, + { label: "Work", href: "/work" }, + { label: "Contact", href: "/contact" } + ] + }, + { + title: "Contact Info", items: [ + { label: "Email: info@webdesigntech360.com", href: "mailto:info@webdesigntech360.com" }, + { label: "Phone: +1 (555) 123-4567", href: "tel:+15551234567" }, + { label: "Address: 123 Digital Drive, Innovation City, CA 90210", href: "#" } + ] + } + ]; + + return ( + + + +
+ +
+
+ +
+ +
+
+ ); +} \ No newline at end of file