import { useRef } from 'react'; import { motion, useInView } from 'framer-motion'; import { Link } from 'react-router-dom'; import { ArrowRight, Shield, Eye, Compass, Waves } from 'lucide-react'; const HERO_IMAGE = 'https://media.base44.com/images/public/6a1aa943c64c01f8574f2f1e/5fa4d320b_generated_08479752.png'; const DETAIL_IMAGE = 'https://media.base44.com/images/public/6a1aa943c64c01f8574f2f1e/3b04c24b4_generated_61128ef3.png'; const values = [ { icon: Shield, title: 'Integrity', description: 'Every vessel in our fleet undergoes rigorous inspection and verification. We stake our reputation on transparency.', }, { icon: Eye, title: 'Precision', description: 'From technical specifications to market valuation, we deliver data-driven insights for informed decisions.', }, { icon: Compass, title: 'Navigation', description: 'We guide you through every phase of acquisition—from initial inquiry to final handover and beyond.', }, { icon: Waves, title: 'Legacy', description: 'Each vessel represents a chapter in maritime excellence. We help you write the next one.', }, ]; export default function About() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); return (
{/* Hero */}
Aerial view of luxury yacht on dark ocean

About Titanic Horizon

OUR
LEGACY

{/* Mission */}

Our Mission

REDEFINING VESSEL ACQUISITION

Titanic Horizon was founded on a singular belief: that acquiring a vessel should be as extraordinary as the vessel itself. We are not merely brokers—we are maritime architects of experience.

Our team combines decades of engineering expertise with an intimate understanding of what discerning buyers truly seek. Every vessel in our portfolio has been meticulously evaluated, documented, and presented with the precision it deserves.

Luxury yacht hull detail
{/* Values */}

Our Principles

CARDINAL POINTS

{values.map((value, i) => (

{value.title}

{value.description}

))}
{/* CTA */}

CHART YOUR
COURSE

Ready to begin your maritime journey? Our specialists are standing by.

Start Commission
); }
top of page
bottom of page