Initial commit: Salmakis Yachting Portal with Cloudinary & i18n

This commit is contained in:
2026-04-14 12:34:19 +03:00
parent e6784f8056
commit 8b1bdfd3c6
99 changed files with 4118 additions and 115 deletions

View File

@@ -0,0 +1,31 @@
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>
);
}