Switch to version 1: remove src/app/projects/digital-brand-identity/page.tsx

This commit is contained in:
2026-03-09 08:26:59 +00:00
parent f0daf18d4d
commit 0a127211e9

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay navItems={navItems} />
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Digital Brand Identity"
description="A comprehensive brand redesign for a tech startup"
background={{ variant: "animated-grid" }}
mediaItems={[
{
imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Brand identity showcase"},
]}
buttons={[
{ text: "Back to Projects", href: "/projects" },
]}
/>
</div>
<div id="work" data-section="work">
<FeatureCardTwentyFour
title="Project Highlights"
description="Key deliverables and outcomes"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{
id: "1", title: "Logo Design", author: "Brand Team", description: "Modern and versatile logo system", tags: ["Branding", "Logo"],
imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Logo design"},
{
id: "2", title: "Color Palette", author: "Design", description: "Vibrant and cohesive color system", tags: ["Design", "Colors"],
imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Color palette"},
{
id: "3", title: "Typography", author: "Design", description: "Custom typography guidelines", tags: ["Typography", "Brand"],
imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Typography system"},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Interested?"
title="Let's Discuss Your Brand"
description="Ready to create a powerful brand identity?"
background={{ variant: "plain" }}
useInvertedBackground={false}
buttonText="Schedule Consultation"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Our Studio"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Contact", href: "contact" }}
/>
</div>
</ThemeProvider>
);
}