// © XlXi 2021 // Graphictoria 5 import React from 'react'; import { Link } from 'react-router-dom'; function FooterLink(props) { return ( {props.label} ); } const Footer = () => { let CurrentDate = new Date(); return (

Graphictoria

| | | | |


Copyright © {CurrentDate.getFullYear()} Graphictoria. All rights reserved.

Graphictoria is not affiliated with, endorsed by, or sponsored by Roblox Corporation. The usage of this website signifies your acceptance of the and our .

YouTube Twitter Discord
); }; export default Footer;