"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { ArrowRight } from "lucide-react"; export default function WorkPage() { const navItems = [ { name: "Work", id: "/work" }, { name: "About", id: "/about" }, { name: "Services", id: "/services" }, { name: "Contact", id: "/contact" }, { name: "Projects", id: "/work" }, ]; const footerColumns = [ { items: [ { label: "Work", href: "/work" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, ], }, { items: [ { label: "Contact", href: "/contact" }, { label: "Creative Direction", href: "/services" }, { label: "Projects", href: "/work" }, ], }, { items: [ { label: "Email", href: "mailto:hello@visionfirst.studio" }, { label: "Instagram", href: "https://instagram.com/visionfirst" }, { label: "LinkedIn", href: "https://linkedin.com/company/visionfirst" }, ], }, ]; return (
); }