'use client'; import { useEffect, useState } from 'react'; import Slideshow from '@/components/Slideshow'; import CalendarStrip from '@/components/CalendarStrip'; import MeasuredText from '@/components/MeasuredText'; const gold = '#E8A849'; const navy = '#010D1E'; const cream = '#f5f0e8'; export default function HomePage() { const [tagline, setTagline] = useState('Hotel · Restaurant · Andean Highlands'); useEffect(() => { fetch('/api/site-assets?key=tagline') .then((r) => r.json()) .then((j) => { if (j.data) setTagline(j.data); }) .catch(() => {}); }, []); return (

{tagline}

La Huasca

Hotel · Restaurant · Andean Highlands

); }