mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 16:05:47 +01:00
✨ Add board pages
This commit is contained in:
18
src/pages/board/index.tsx
Normal file
18
src/pages/board/index.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Title } from '@mantine/core';
|
||||
import { GetServerSideProps } from 'next';
|
||||
import { MainLayout } from '~/components/layout/main';
|
||||
|
||||
export default function BoardPage() {
|
||||
return (
|
||||
<MainLayout>
|
||||
<Title order={1}>BoardPage</Title>
|
||||
</MainLayout>
|
||||
);
|
||||
}
|
||||
|
||||
export const getServerSideProps: GetServerSideProps = async () => {
|
||||
console.log('getServerSideProps');
|
||||
return {
|
||||
props: {},
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user