"use client"; import { Button } from "@/components/ui/Button"; import { Section } from "@/components/ui/Section"; import { Heading, Text } from "@/components/ui/Typography"; import { useTranslation } from "@/lib/hooks/useTranslation"; import type { Product } from "lib/shopify/types"; import { ProductSlider } from "./ProductSlider"; interface ProductSliderSectionProps { products: Product[]; } /** * Presentation component for the product slider section * Handles the layout and presentation aspects, but not data fetching */ export function ProductSliderSection({ products }: ProductSliderSectionProps) { const { t } = useTranslation(); return (