23 lines
542 B
TypeScript
23 lines
542 B
TypeScript
import React from 'react';
|
||
import {AppShell, AppShellHeader, AppShellMain} from "@mantine/core";
|
||
import {Header} from "@/components/header";
|
||
|
||
export const metadata = {
|
||
title: 'Контесты',
|
||
description: '',
|
||
};
|
||
|
||
const Page = () => {
|
||
return (
|
||
<AppShell header={{height: 70}}>
|
||
<AppShellHeader>
|
||
<Header state="logged-in"/>
|
||
</AppShellHeader>
|
||
<AppShellMain>
|
||
Контесты
|
||
</AppShellMain>
|
||
</AppShell>
|
||
);
|
||
};
|
||
|
||
export default Page;
|