Files
62b085b7-4ee4-4199-b91c-9e3…/src/pages/HomePage/sections/FeaturesWhy.tsx
2026-06-17 14:57:36 +00:00

39 lines
1.4 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "features-why" section.
import React from 'react';
import FeaturesBorderGlow from '@/components/sections/features/FeaturesBorderGlow';
import { Heart, Sparkles, Users } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FeaturesWhySection(): React.JSX.Element {
return (
<div id="features-why" data-section="features-why">
<SectionErrorBoundary name="features-why">
<FeaturesBorderGlow
tag="Why Choose Us"
title="Excellence in Event Planning"
description="We bring creativity and professionalism to every celebration, ensuring stress-free and stunning results."
features={[
{
icon: Users,
title: "Experienced Team",
description: "Professional event management team with years of expertise.",
},
{
icon: Sparkles,
title: "Creative Concepts",
description: "Tailored themes to suit your vision and occasion.",
},
{
icon: Heart,
title: "Personalized Services",
description: "Dedicated approach focused on your specific desires.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}