api call ssr landing + latest product + ...

This commit is contained in:
hamid zarghami
2025-08-27 15:57:05 +03:30
parent b0f299fc70
commit 3f2a5878d0
27 changed files with 410 additions and 93 deletions
+8 -2
View File
@@ -1,4 +1,4 @@
import withLayout from "@/hoc/withLayout"
import Layout from "@/hoc/Layout"
import { NextPage } from "next"
import Menu from "../components/Menu"
import GridWrapper from "@/components/GridWrapper"
@@ -20,4 +20,10 @@ const FavoritePage: NextPage = () => {
)
}
export default withLayout(FavoritePage)
export default function FavoritePageWithLayout() {
return (
<Layout>
<FavoritePage />
</Layout>
)
}