2025-09-22 14:23:01 +02:00
|
|
|
import Link from 'next/link';
|
2025-09-21 23:03:02 +02:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
2025-09-22 14:23:01 +02:00
|
|
|
<div className="min-h-screen bg-[#1b233b] flex items-center justify-center">
|
|
|
|
|
<div className="text-center">
|
|
|
|
|
<h1 className="text-6xl font-['Palatino',_serif] text-[#C6AE97] mb-4">PORT AMADOR</h1>
|
|
|
|
|
<p className="text-xl text-white font-['bill_corporate_medium'] font-light mb-8">PANAMA</p>
|
|
|
|
|
<Link
|
|
|
|
|
href="/contact"
|
|
|
|
|
className="inline-block bg-[#C6AE97] text-[#1B233B] px-8 py-3 rounded-[5px] font-['bill_corporate_medium'] font-medium text-lg hover:bg-[#D4C1AC] transition-colors"
|
2025-09-21 23:03:02 +02:00
|
|
|
>
|
2025-09-22 14:23:01 +02:00
|
|
|
VIEW CONTACT PAGE
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
2025-09-21 23:03:02 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|