Fixed an issue

This commit is contained in:
Tiago Ribeiro
2023-10-21 16:03:12 +01:00
parent 4f62dd04d5
commit c38eb3633b

View File

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