diff --git a/src/app/projects/digital-brand-identity/page.tsx b/src/app/projects/digital-brand-identity/page.tsx deleted file mode 100644 index 7948c80..0000000 --- a/src/app/projects/digital-brand-identity/page.tsx +++ /dev/null @@ -1,91 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; - -export default function DigitalBrandIdentity() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Projects", id: "/projects" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - ]; - - return ( - - - -
- -
- -
- -
- -
- -
- - -
- ); -}