mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
import type { NextPage } from "next";
|
|
import { Title } from "../components/ui/styles/title";
|
|
import Layout from "../components/ui/layout";
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<div>
|
|
<Layout title="Index">
|
|
<Title>Home</Title>
|
|
</Layout>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|