// @ts-nocheck import gruvboxComputer from "../images/gruvbox-computer.svg" import { Link } from "react-router" const Header = () => { return (
) } const Footer = () => { return ( ) } const MainTemplate = ({ children }) => { return (
{children}
) } export default MainTemplate