Files
triqura-ecd/app/(marketing)/components/hero-section-client.tsx
2025-11-18 13:55:16 +01:00

34 lines
631 B
TypeScript

'use client'
import { HeroSection } from '@/components/ui/hero-section-2'
interface HeroSectionClientProps {
logo?: {
url: string
alt: string
text?: string
}
slogan?: string
title: React.ReactNode
subtitle: string | React.ReactNode
punchline?: string | React.ReactNode
callToAction: {
text: string
href: string
}
secondaryCallToAction?: {
text: string
href: string
}
backgroundImage: string
contactInfo?: {
website: string
phone: string
address: string
}
}
export function HeroSectionClient(props: HeroSectionClientProps) {
return <HeroSection {...props} />
}