import MainLayout from 'layouts/MainLayout'; import Head from 'next/head'; import type { NextPageWithLayout } from 'types'; const Home: NextPageWithLayout = () => { return (
RUA - HOME
hi
); }; Home.getLayout = function getLayout(page) { return {page}; }; export default Home;