import React, { useMemo, useState } from 'react'; import { motion, AnimatePresence } from 'framer-motion'; import { Mail, Instagram, ArrowRight, Phone } from 'lucide-react'; const pages = { home: 'home', portfolio: 'portfolio', contact: 'contact', }; const imageCards = [ { id: 'still-life', title: 'Still Life', subtitle: 'Product Architecture / Quiet Detail', mood: 'Texture first, everything else after.', className: 'from-stone-200 via-neutral-100 to-white', }, { id: 'on-model', title: 'On Model', subtitle: 'Soft. Strong. Intimate.', mood: 'A visual language shaped by layering, intimacy, and movement.', className: 'from-zinc-900 via-zinc-700 to-stone-400 text-white', }, { id: 'campaign', title: 'Campaign', subtitle: 'Real life, real layers.', mood: 'From morning to night — same system.', className: 'from-neutral-100 via-stone-200 to-zinc-300', }, ]; const portfolioItems = [ { category: 'Brand World', title: 'System / Modularity', description: '3ZONE introduces a modular clothing system composed of three essential garments designed to adapt to different moments of the day.', }, { category: 'Product', title: 'TOB / TNK / TN3', description: 'Three core pieces without a fixed hierarchy of layering: they can cover, reveal, shift, and reframe the silhouette naturally.', }, { category: 'Campaign', title: 'Daily Narrative', description: 'The campaign follows real routines and micro-adaptations rather than outfit changes. The focus is not styling, but use.', }, { category: 'Tone of Voice', title: 'Calm. Confident. Contemporary.', description: 'Never loud, never forced. Sensual without being explicit. Intelligent, but accessible.', }, { category: 'Positioning', title: 'Between Bodywear and Contemporary Fashion', description: '3ZONE occupies an under-served space between functionality, sensuality, and everyday wearability.', }, { category: 'Materiality', title: 'Soft Structures', description: 'Cotton jersey, transparency, close-to-skin layers, and wearable modularity designed for repeated use.', }, ]; function NavLink({ active, children, onClick }) { return ( ); } function PlaceholderImage({ title, subtitle, mood, className }) { return (

Deck image placeholder

{title}

{subtitle}

{mood}

); } function HomePage({ goPortfolio, goContact }) { return ( <>

3ZONE / Contemporary System

Soft. Strong.
Intimate.

3ZONE is a modular wardrobe system designed for real urban life: three essential garments, one fluid visual language, and a calm sensuality that adapts instead of forcing change.

Hero image from deck

Brand Manifesto

A reduced but intelligent wardrobe. A system that stays, because it comes from daily use, not from trend.

{imageCards.map((item, index) => ( ))}

About

A wardrobe built as a system.

3ZONE was born from the observation of real women’s lives: long days, fluid rhythms, and constant transitions between work, movement, sociality, and personal time.

The project responds with essential, modular garments designed to function alone or in combination — not as seasonal excess, but as a clear and adaptive language.

The value is not in the single piece, but in the system the pieces create together.

Campaign video

From morning to night — same system.

The campaign follows daily gestures and micro-adaptations rather than complete outfit changes. The focus is not styling, but use.

{[ 'Real life, real layers.', 'No styling needed. It just works.', 'Minimal layers, maximum effect.', 'Quiet work, clean results.', ].map((line) => (

{line}

))}
); } function PortfolioPage() { return (

Portfolio

Selected brand, product, and campaign directions.

{portfolioItems.map((item, index) => (

{item.category}

{item.title}

{item.description}

))}
); } function ContactPage() { return (

Contact

Let’s build something clear, strong, and unforgettable.

{[ { icon: Mail, label: 'Email', value: 'hello@trezonestudio.com', href: 'mailto:hello@trezonestudio.com', }, { icon: Instagram, label: 'Instagram', value: '@trezonestudio', href: 'https://instagram.com/trezonestudio', }, { icon: Phone, label: 'Phone', value: '+39 340 000 0000', href: 'tel:+393400000000', }, ].map((item) => { const Icon = item.icon; return (

{item.label}

{item.value}

); })}
For press, showroom appointments, collaborations, and campaign requests, write directly or use the links above. This section is ready for your real contact details.
); } export default function TreZoneStudioHelmutStyle() { const [page, setPage] = useState(pages.home); const currentPage = useMemo(() => { switch (page) { case pages.portfolio: return ; case pages.contact: return ; default: return setPage(pages.portfolio)} goContact={() => setPage(pages.contact)} />; } }, [page]); return (
{currentPage}
); }