Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-05-05 14:43:57 +00:00
5 changed files with 16 additions and 16 deletions

View File

@@ -30,7 +30,7 @@ export default function AdminDashboardPage() {
{ name: "Utilizadores", id: "/admin/users" },
{ name: "Definições", id: "/admin/settings" },
]}
brandName="MozaEats Admin"
brandName="ENTREGA Admin"
/>
</div>
@@ -54,11 +54,11 @@ export default function AdminDashboardPage() {
{ title: "Administração", items: [{ label: "Logs do Sistema", href: "#" }, { label: "Relatórios", href: "#" }] },
{ title: "Apoio", items: [{ label: "Centro de Ajuda", href: "#" }] },
]}
bottomLeftText="© 2024 MozaEats Admin Panel"
bottomLeftText="© 2024 ENTREGA Admin Panel"
bottomRightText="Maputo, Moçambique"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -15,11 +15,11 @@ export default function LoginPage() {
{ name: "Login", id: "/auth/login" },
{ name: "Registo", id: "/auth/register" }
]}
brandName="MozaEats"
brandName="ENTREGA"
/>
<main className="flex min-h-screen flex-col items-center justify-center p-24">
<div className="max-w-md w-full space-y-8 p-8 bg-card rounded-xl">
<h2 className="text-3xl font-bold text-center">Entrar na MozaEats</h2>
<h2 className="text-3xl font-bold text-center">Entrar na ENTREGA</h2>
<div className="flex justify-center gap-4">
<button onClick={() => setMethod('email')} className={`px-4 py-2 rounded ${method === 'email' ? 'bg-primary' : 'bg-secondary'}`}>Email</button>
<button onClick={() => setMethod('phone')} className={`px-4 py-2 rounded ${method === 'phone' ? 'bg-primary' : 'bg-secondary'}`}>Telefone</button>
@@ -37,4 +37,4 @@ export default function LoginPage() {
</main>
</ThemeProvider>
);
}
}

View File

@@ -12,7 +12,7 @@ export default function RegisterPage() {
{ name: "Login", id: "/auth/login" },
{ name: "Registo", id: "/auth/register" }
]}
brandName="MozaEats"
brandName="ENTREGA"
/>
<main className="flex min-h-screen flex-col items-center justify-center p-24">
<div className="max-w-md w-full space-y-8 p-8 bg-card rounded-xl">
@@ -32,4 +32,4 @@ export default function RegisterPage() {
</main>
</ThemeProvider>
);
}
}

View File

@@ -29,7 +29,7 @@ export default function DashboardPage() {
{ name: "Produtos", id: "products" },
{ name: "Pedidos", id: "orders" },
]}
brandName="MozaEats Admin"
brandName="ENTREGA Admin"
/>
</div>
@@ -70,11 +70,11 @@ export default function DashboardPage() {
{ title: "Conta", items: [{ label: "Sair", href: "/" }] },
{ title: "Documentação", items: [{ label: "Guia do Proprietário", href: "#" }] },
]}
bottomLeftText="© 2024 MozaEats Admin. Acesso Restrito."
bottomLeftText="© 2024 ENTREGA Admin. Acesso Restrito."
bottomRightText="Versão 1.0.0"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={t[lang as 'pt'|'en'].nav}
brandName="MozaEats"
brandName="ENTREGA"
/>
<div className="fixed top-4 right-4 z-50">
<button onClick={toggleLang} className="px-4 py-2 bg-white/20 backdrop-blur rounded-full text-sm font-bold">
@@ -86,7 +86,7 @@ export default function LandingPage() {
features={[
{ id: "1", label: "Rapidez", title: "Entregas em Minutos", items: ["Geolocalização", "Frota dedicada"] },
]}
title="Porquê Escolher a MozaEats?"
title="Porquê Escolher a ENTREGA?"
description="Focados na excelência e na tecnologia local."
/>
</div>
@@ -136,7 +136,7 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[{ id: "f1", title: "Onde operamos?", content: "Maputo e Matola." }]}
title="Perguntas Frequentes"
description="Saiba mais sobre a MozaEats."
description="Saiba mais sobre a ENTREGA."
faqsAnimation="slide-up"
mediaAnimation="slide-up"
/>
@@ -156,11 +156,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[]}
bottomLeftText="© 2024 MozaEats. Todos os direitos reservados."
bottomLeftText="© 2024 ENTREGA. Todos os direitos reservados."
bottomRightText="Maputo, Moçambique"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}