diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx deleted file mode 100644 index e86cd7d..0000000 --- a/src/app/portfolio/page.tsx +++ /dev/null @@ -1,103 +0,0 @@ -"use client"; - -import ReactLenis from "lenis/react"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; -import FooterBase from "@/components/sections/footer/FooterBase"; -import { ArrowUpRight, Sparkles, Search, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react"; - -export default function PortfolioPage() { - const updatedNavItems = [ - { name: "Work", href: "/portfolio" }, - { name: "Services", href: "#services" }, - { name: "About", href: "#about" }, - { name: "Contact", href: "/contact" }, - ]; - - const updatedFooterColumns = [ - { - title: "Company", items: [ - { label: "About", href: "#about" }, - { label: "Services", href: "#services" }, - { label: "Work", href: "/portfolio" }, - { label: "Contact", href: "/contact" }, - ], - }, - { - title: "Services", items: [ - { label: "Web Development", href: "#" }, - { label: "SEO", href: "#" }, - { label: "Branding", href: "#" }, - { label: "UI/UX Design", href: "#" }, - ], - }, - { - title: "Connect", items: [ - { label: "Twitter", href: "#" }, - { label: "LinkedIn", href: "#" }, - { label: "Instagram", href: "#" }, - { label: "Dribbble", href: "#" }, - ], - }, - ]; - - return ( - - - -
- -
- -
-
- ); -}