mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 08:41:37 +00:00
22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
import MainLayout from 'layouts/MainLayout';
|
|
import Head from 'next/head';
|
|
import type { NextPageWithLayout } from 'types';
|
|
|
|
const Home: NextPageWithLayout = () => {
|
|
return (
|
|
<div className="text-lg text-red-700">
|
|
<Head>
|
|
<title>RUA - HOME</title>
|
|
</Head>
|
|
|
|
<div>hi</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
Home.getLayout = function getLayout(page) {
|
|
return <MainLayout>{page}</MainLayout>;
|
|
};
|
|
|
|
export default Home;
|