diff --git a/src/components/sections/PromotionsSection.tsx b/src/components/sections/PromotionsSection.tsx new file mode 100644 index 0000000..b8c899a --- /dev/null +++ b/src/components/sections/PromotionsSection.tsx @@ -0,0 +1,42 @@ +'use client' +import { useEmDashContent } from '@/hooks/useEmDashContent' +import { Card, CardHeader, CardTitle, CardContent, CardFooter } from '@/components/ui/Card' +import Image from 'next/image' +import Button from '@/components/ui/Button' + +export default function PromotionsSection() { + const { items, loading } = useEmDashContent('promotions') + if (loading) return
{d.description}
+{d.price ? `R${Number(d.price).toFixed(0)}` : 'Contact us'}
+ +