redirect to store as home page

This commit is contained in:
SwiftyOS
2024-12-05 10:47:30 +01:00
parent 50d08654f8
commit 3d0ec9c52a

View File

@@ -1,10 +1,9 @@
import { getDictionary } from "./dictionaries";
import { redirect } from "next/navigation";
export default async function Page({
params: { lang },
}: {
params: { lang: string };
}) {
const dict = await getDictionary(lang); // en
return <h1>{dict.home.welcome}</h1>; // Add to Cart
redirect("/store");
}