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 ( +
+ {d.description} +
+