···11+<script setup>
22+ import RiMap from '~icons/gis/map-search';
33+</script>
44+55+<template>
66+ <div class="container mb-24">
77+ <div class="well max-w-xl w-fit mx-auto">
88+ <div class="flex items-center mb-4">
99+ <RiMap class="text-4xl text-gray-400 mx-2 sm:mx-4 md:mx-8 min-w-[30px]" />
1010+ <p class="font-semibold text-lg md:text-xl flex-grow mx-4">What is there to do in the Finger Lakes?</p>
1111+ </div>
1212+ <div class="flex flex-wrap sm:flex-nowrap items-center gap-4">
1313+ <Image d-key="flx" class="max-h-[200px] rounded-md shadow-md mx-auto mt-4" height="200px" />
1414+ <div>
1515+ <p class="lead">
1616+ Trumansburg is located in the heart of the Finger Lakes region, between Cayuga and Seneca Lakes,
1717+ and is close to Ithaca and Watkins Glen. The area is known for its gorges, waterfalls, wineries,
1818+ and cideries. If you have time, make sure to
1919+ <NuxtLink to="/page/finger-lakes">check out some of our favorites spots in the area!</NuxtLink>
2020+ </p>
2121+ </div>
2222+ </div>
2323+ </div>
2424+ </div>
2525+</template>
2626+2727+<style scoped>
2828+ a {
2929+ @apply text-emerald-800 font-semibold underline;
3030+ }
3131+</style>