import Head from 'next/head'; import Link from 'next/link'; import styled from 'styled-components'; import Layout from '../components/Layout'; import useUser from '../lib/useUser'; const QAStyles = styled.div` ol > li { margin-top: 2rem; } a { text-decoration: underline; } li { font-weight: bold; } p { color: var(--white); } `; export default function QandAPage() { const { user } = useUser({ redirectTo: '/login' }); if (!user || user.isLoggedIn === false) { return Loading...; } return (
N & N | Q & A

Q & A

  1. Question 1
  2. Answer 1

  3. How do I get to the venue?
  4. See more detailed info on our{' '} Travel & Stay page.

  5. I still have questions, what is the best way to contact you?
  6. If you have any questions not answered by this Q&A feel free to contact Name and Name at{' '} name@example.com.

); }