39 lines
1.4 KiB
TypeScript
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>
|
|
);
|
|
}
|