13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import { MainLayout } from "@components/layouts";
|
|
import { type NextPage } from "next";
|
|
|
|
const Settings: NextPage = () => {
|
|
return (
|
|
<MainLayout>
|
|
<h1 className="text-r-5xl font-bold text-primary">Settings</h1>
|
|
</MainLayout>
|
|
);
|
|
};
|
|
|
|
export default Settings;
|