💄 Polish layouts

This commit is contained in:
Meier Lukas
2023-08-01 01:13:21 +02:00
parent fff6e6c077
commit df890b8c0a
30 changed files with 556 additions and 1345 deletions

View File

@@ -14,7 +14,7 @@ import { useSession } from 'next-auth/react';
import Head from 'next/head';
import Image from 'next/image';
import Link from 'next/link';
import { MainLayout } from '~/components/layout/admin/main-admin.layout';
import { ManageLayout } from '~/components/layout/Templates/ManageLayout';
import { useScreenLargerThan } from '~/hooks/useScreenLargerThan';
const ManagementPage = () => {
@@ -23,7 +23,7 @@ const ManagementPage = () => {
const { data: sessionData } = useSession();
return (
<MainLayout>
<ManageLayout>
<Head>
<title>Manage Homarr</title>
</Head>
@@ -98,7 +98,7 @@ const ManagementPage = () => {
</Card>
</UnstyledButton>
</SimpleGrid>
</MainLayout>
</ManageLayout>
);
};