"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import Link from 'next/link'; import { Award, Rocket, Star } from 'lucide-react'; export default function PortfolioPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Portfolio", id: "portfolio" }, { name: "About", id: "about" }, { name: "Blog", id: "blog" }, ]; const footerColumns = [ { title: "Services", items: [ { label: "Social Strategy", href: "/#services" }, { label: "Content Creation", href: "/#services" }, { label: "Paid Advertising", href: "/#services" }, { label: "Analytics", href: "/#services" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, { label: "Blog", href: "/#blog" }, { label: "Careers", href: "#" }, ], }, { title: "Connect", items: [ { label: "Contact Us", href: "#contact" }, { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, ], }, ]; return (
); }