Switch to version 3: remove src/app/web-design/page.tsx

This commit is contained in:
2026-05-06 10:42:22 +00:00
parent 49eac08733
commit c6757db7de

View File

@@ -1,95 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function WebDesignPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="grid"
cardStyle="solid"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Web Design", id: "/web-design" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="MATÍAS LANFRANCONI"
/>
<HeroLogo
logoText="Web Design"
description="High-end digital solutions, clean typography, and minimalist agency aesthetics."
buttons={[{ text: "Get Started", href: "/contact" }]}
/>
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="split"
title="Core Web Services"
description="Minimalist and typography-driven solutions for your brand."
useInvertedBackground={false}
features={[
{ id: "s1", title: "E-Commerce", descriptions: ["Premium shop experiences."] },
{ id: "s2", title: "Web Institucional", descriptions: ["Professional corporate branding."] },
{ id: "s3", title: "Landing / One-page", descriptions: ["Focused high-conversion design."] },
{ id: "s4", title: "Custom Project", descriptions: ["Bespoke development tailored for you."] }
]}
/>
<div className="bg-neutral-900 text-white p-16">
<ProductCardTwo
title="Game Development Portfolio"
description="Dark-themed, pixel-art inspired unique experiences."
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
products={[
{ id: "g1", brand: "Indie", name: "Pixel Hero", price: "Custom", rating: 5, reviewCount: "0", imageSrc: "" },
{ id: "g2", brand: "Indie", name: "Dungeon Runner", price: "Custom", rating: 4, reviewCount: "0", imageSrc: "" },
{ id: "g3", brand: "Indie", name: "Space Shooter", price: "Custom", rating: 5, reviewCount: "0", imageSrc: "" }
]}
/>
</div>
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="split"
title="Additional Solutions"
description="Comprehensive services for agencies and specialized firms."
useInvertedBackground={false}
features={[
{ id: "a1", title: "Agencies", descriptions: ["White-label development partners."] },
{ id: "a2", title: "Consulting", descriptions: ["Strategic digital planning."] }
]}
/>
<ContactCenter
tag="Let's Talk"
title="Start your project"
description="High-end design requires precision. Let's work together."
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
<FooterLogoReveal
logoText="MATÍAS LANFRANCONI"
leftLink={{ text: "Back to Home", href: "/" }}
rightLink={{ text: "© 2024", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}