Translated the home page to work with both EN and AR

This commit is contained in:
Tiago Ribeiro
2023-10-21 14:22:57 +01:00
parent 0c747f6332
commit 799abc813d
17 changed files with 627 additions and 242 deletions

View File

@@ -53,7 +53,7 @@ export default function Home() {
return (
<main className="h-screen w-full bg-white text-mti-black flex flex-col">
<Navbar currentPage="/success" />
<Navbar currentPage="/success" language="en" />
<section className="w-full h-full relative bg-white py-32 flex flex-col items-center justify-center text-center gap-4">
{isLoading && (
@@ -83,7 +83,7 @@ export default function Home() {
)}
</section>
<Footer />
<Footer language="en" />
</main>
);
}