32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
export default function ValueProp() {
|
|
return (
|
|
<section className="py-24 bg-white px-8">
|
|
<div className="max-w-4xl mx-auto text-center">
|
|
<h2 className="text-midnight text-4xl md:text-5xl mb-8">
|
|
A Legacy of Excellence <span className="text-gold italic">Since 1980</span>
|
|
</h2>
|
|
<div className="w-24 h-px bg-gold mx-auto mb-8"></div>
|
|
<p className="text-gray-600 text-lg leading-relaxed mb-12">
|
|
Salmakis Yachting has been the benchmark for luxury charters in the Aegean for over four decades.
|
|
Our fleet represents the pinnacle of seafaring elegance, combining the charm of traditional
|
|
craftsmanship with the comforts of a 5-star floating hotel.
|
|
</p>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-12 text-center uppercase tracking-widest text-xs">
|
|
<div>
|
|
<span className="block text-gold text-2xl mb-2 font-serif">40+</span>
|
|
Years Experience
|
|
</div>
|
|
<div>
|
|
<span className="block text-gold text-2xl mb-2 font-serif">5★</span>
|
|
Bespoke Service
|
|
</div>
|
|
<div>
|
|
<span className="block text-gold text-2xl mb-2 font-serif">100%</span>
|
|
Aegean Expertise
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|