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

6
src/app/ar/page.tsx Normal file
View File

@@ -0,0 +1,6 @@
import Home from "@/templates/Home";
import {NextPageContext} from "next";
export default function Page({}: NextPageContext) {
return <Home language="ar" />;
}