diff --git a/src/app/contato/page.tsx b/src/app/contato/page.tsx index fec432a..53dc0a2 100644 --- a/src/app/contato/page.tsx +++ b/src/app/contato/page.tsx @@ -10,48 +10,44 @@ import { Calendar, Phone, Mail, MessageCircle } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Sobre", id: "about" }, - { name: "Metodologia", id: "methodology" }, - { name: "Resultados", id: "results" }, + { name: "Platform", id: "platform" }, + { name: "Innovation", id: "innovation" }, + { name: "Results", id: "results" }, { name: "FAQ", id: "faq" }, - { name: "Contato", id: "contact" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ { - title: "Produto", - items: [ - { label: "Nossas Soluções", href: "#services" }, - { label: "Metodologia", href: "/metodologia" }, - { label: "Casos de Sucesso", href: "/resultados" }, - { label: "Pricing", href: "#contact" }, + title: "Platform", items: [ + { label: "Solutions", href: "#platform" }, + { label: "Technology", href: "#innovation" }, + { label: "Case Studies", href: "#results" }, + { label: "Enterprise", href: "#contact" }, ], }, { - title: "Empresa", - items: [ - { label: "Sobre SCALENZA", href: "/sobre" }, - { label: "Nossa Equipe", href: "/sobre" }, + title: "Company", items: [ + { label: "About SCALENZA", href: "/sobre" }, + { label: "Team", href: "/sobre" }, { label: "Blog", href: "#blog" }, - { label: "Carreiras", href: "#careers" }, + { label: "Careers", href: "#careers" }, ], }, { - title: "Suporte", - items: [ + title: "Support", items: [ { label: "FAQ", href: "#faq" }, - { label: "Entre em Contato", href: "/contato" }, + { label: "Contact", href: "/contato" }, { label: "WhatsApp", href: "https://wa.me/5511999999999" }, { label: "Email", href: "mailto:hello@scalenza.com" }, ], }, { - title: "Legal", - items: [ - { label: "Política de Privacidade", href: "#privacy" }, - { label: "Termos de Uso", href: "#terms" }, - { label: "Política de Cookies", href: "#cookies" }, - { label: "LGPD", href: "#lgpd" }, + title: "Legal", items: [ + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms of Service", href: "#terms" }, + { label: "Cookie Policy", href: "#cookies" }, + { label: "Data Protection", href: "#data" }, ], }, ]; @@ -75,33 +71,21 @@ export default function ContactPage() {
); -} \ No newline at end of file +}