From a017b4fbc3333132c36269a9dfc80734b7ca9e34 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 13:27:25 +0000 Subject: [PATCH] Deploy --- .../AuthenticationGuaranteeSection.tsx | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/components/sections/AuthenticationGuaranteeSection.tsx diff --git a/src/components/sections/AuthenticationGuaranteeSection.tsx b/src/components/sections/AuthenticationGuaranteeSection.tsx new file mode 100644 index 0000000..99d4450 --- /dev/null +++ b/src/components/sections/AuthenticationGuaranteeSection.tsx @@ -0,0 +1,80 @@ +'use client' + +import { useVulaContent } from '@/hooks/useVulaContent' +import { Award, CircleCheck, Shield } from 'lucide-react' +import { Card, CardContent } from '@/components/ui/Card' +import Badge from '@/components/ui/Badge' + +export default function AuthenticationGuaranteeSection() { + const { items, loading } = useVulaContent('policies') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( +
+
+
+ + + Trust Guarantee + + +
+ +

+ Every pair authenticated{' '} + before it reaches your door +

+ +
+ {items.map((item) => { + const d = item.data as { title?: string; description?: string } + return ( + + +
+ +
+

+ {d.title} +

+

+ {d.description} +

+
+
+ ) + })} +
+ +
+
+ + Verified by third-party experts +
+
+ + 100% satisfaction guarantee +
+
+ + Free returns within 7 days +
+
+
+
+ ) +}