From 081bb98ee893cb2e8104b37804139cbc8d5d27ed Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:02:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 146 +++++++++++++++++++++++------------------------ 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3828b26..d8fbd3d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,32 +14,32 @@ import Link from "next/link"; export default function HomePage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "Browse", id: "/browse" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Início", id: "/" }, + { name: "Navegar", id: "/browse" }, + { name: "Sobre", id: "/about" }, + { name: "Contacto", id: "/contact" }, ]; const footerColumns = [ { items: [ - { label: "Home", href: "/" }, - { label: "Browse Stores", href: "/browse" }, - { label: "About", href: "/about" }, + { label: "Início", href: "/" }, + { label: "Navegar Lojas", href: "/browse" }, + { label: "Sobre", href: "/about" }, ], }, { items: [ - { label: "Contact", href: "/contact" }, - { label: "Support", href: "#" }, - { label: "For Businesses", href: "#" }, + { label: "Contacto", href: "/contact" }, + { label: "Suporte", href: "#" }, + { label: "Para Empresas", href: "#" }, ], }, { items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" }, + { label: "Política de Privacidade", href: "#" }, + { label: "Termos de Serviço", href: "#" }, + { label: "Política de Cookies", href: "#" }, ], }, ]; @@ -63,51 +63,51 @@ export default function HomePage() {