Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/src/compoents/pages/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import { ProductSliderSection, MainSlider } from "@/compoents/organisms";
// import { ProductSliderSection, MainSlider } from "@/compoents/organisms";
import { useTranslations } from "next-intl";
import { FC } from "react";

Expand All @@ -14,7 +14,7 @@ const HomePage: FC<HomePagePorps> = ({ data }) => {
const t = useTranslations("Home.Main.Sections");
return (
<div className="flex flex-col gap-12 relative">
<MainSlider />
{/* <MainSlider />
{Boolean(topProducts.data.length) && (
<ProductSliderSection
name={t("Top.name")}
Expand All @@ -38,7 +38,7 @@ const HomePage: FC<HomePagePorps> = ({ data }) => {
data={discountProducts.data}
href="/discount-products"
/>
)}
)} */}
</div>
);
};
Expand Down