"use client"; import Link from "next/link"; import { useLanguage } from "@/contexts/LanguageContext"; export default function ProjetosPage() { const { t } = useLanguage(); // Placeholder data - will be replaced by database content const projects = [ { id: 1, title: t('home.projects.1.title'), category: t('home.projects.1.cat'), location: "Vitória, ES", image: "https://images.unsplash.com/photo-1616401784845-180882ba9ba8?q=80&w=2070&auto=format&fit=crop", description: "Projeto de adequação técnica de 50 caminhões para instalação de carrocerias especiais e sistemas de segurança." }, { id: 2, title: t('home.projects.2.title'), category: t('home.projects.2.cat'), location: "Serra, ES", image: "https://images.unsplash.com/photo-1535082623926-b3a33d531740?q=80&w=2052&auto=format&fit=crop", description: "Inspeção completa e emissão de laudo técnico para guindaste de 45 toneladas, com testes de carga e verificação estrutural." }, { id: 3, title: t('home.projects.3.title'), category: t('home.projects.3.cat'), location: "Aracruz, ES", image: "https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2070&auto=format&fit=crop", description: "Desenvolvimento e cálculo estrutural de Spreader para movimentação de contêineres em área portuária." }, { id: 4, title: t('home.projects.4.title'), category: t('home.projects.4.cat'), location: "Linhares, ES", image: "https://images.unsplash.com/photo-1581092921461-eab62e97a782?q=80&w=2070&auto=format&fit=crop", description: "Inventário e adequação de segurança de 120 máquinas operatrizes conforme norma regulamentadora NR-12." }, { id: 5, title: t('home.projects.5.title'), category: t('home.projects.5.cat'), location: "Viana, ES", image: "https://images.unsplash.com/photo-1591768793355-74d04bb6608f?q=80&w=2070&auto=format&fit=crop", description: "Processo completo de homologação e certificação de plataformas elevatórias para distribuição urbana." }, { id: 6, title: t('home.projects.6.title'), category: t('home.projects.6.cat'), location: "Cariacica, ES", image: "https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=2070&auto=format&fit=crop", description: "Projeto e instalação de sistema de linha de vida para proteção contra quedas em operações de carga e descarga." } ]; return (
{/* Hero Section */}

{t('projects.hero.title')}

{t('projects.hero.subtitle')}

{/* Projects Grid */}
{/* Filters (Placeholder) */}
{projects.map((project) => (
{project.category}

{project.title}

{project.location}

{project.description}

{t('projects.card.details')}
))}
); }