Source: pages/Contact.jsx

import React from 'react';
import { Link } from 'react-router-dom';
import '../styles/Contact.css';
/**
 * 
 * @returns {String}Contact function
 * @author Feather Hoshizora
 * Allows for sharing of feedback, intended to soon connect to contactUs page
 */
function Contact() {
    return (
        <div className="contact">
            <div className='headerContainer'>
                <h1>Share feedback!</h1>
            </div>

        </div>
    )
}

export default Contact