"use client"; import { DATA } from "@/lib/demoData"; import { Features, RightSide, SliderComp } from "@/components/pages/products"; export default function SlugPage() { const statusColor = DATA[0].status === "full" ? "text-green-500" : DATA[0].status === "empty" ? "text-red-600" : "text-yellow-800"; const statusText = DATA[0].status === "full" ? "Sotuvda mavjud" : DATA[0].status === "empty" ? "Sotuvda qolmagan" : "Buyurtma asosida"; return (
); }