Switch to version 2: added src/pages/HomePage/sections/SocialProof.tsx

This commit is contained in:
2026-06-22 23:10:49 +00:00
parent bf4fafa6b9
commit a1b04d466a

View File

@@ -0,0 +1,29 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "social-proof" section.
import React from 'react';
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function SocialProofSection(): React.JSX.Element {
return (
<div id="social-proof" data-section="social-proof">
<SectionErrorBoundary name="social-proof">
<SocialProofMarquee
tag="Partnerships"
title="Accredited Excellence"
description="Recognized by industry leaders worldwide."
names={[
"Forbes Travel Guide",
"Condé Nast Traveler",
"Michelin Guide",
"Leading Hotels of the World",
"Virtuoso",
"American Express Fine Hotels",
"TripAdvisor Choice",
]}
/>
</SectionErrorBoundary>
</div>
);
}