import Head from 'next/head'; import styled from 'styled-components'; import { RiExternalLinkLine } from 'react-icons/ri'; import Layout from '../components/Layout'; import { MapIcon } from '../lib/svgs'; import useUser from '../lib/useUser'; const TravelAndStayStyles = styled.div` display: grid; gap: 4rem; text-align: center; ul { list-style-type: none; padding: 0; li { margin-top: 1.5rem; } } a.link { text-decoration: underline; color: var(--primary); } `; export default function TravelAndStayPage() { const { user } = useUser({ redirectTo: '/login' }); if (!user || user.isLoggedIn === false) { return Loading...; } return ( <> Wedding - Travel & Stay

Travel & Stay

Traveling to the wedding

{' '} Central Park

Central Park, New York, NY, USA

Hotel Website

Get Directions to the hotel

Hotel Information

Do I need to book a hotel room?

Answer

There are also hotels in the area such as:

); }