feat: compose;
feat: frontend added
This commit is contained in:
26
Frontend/app/layout.tsx
Normal file
26
Frontend/app/layout.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import './globals.css';
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import { Toaster } from '@/components/ui/sonner';
|
||||
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Космический путь - Система геймификации',
|
||||
description: 'Интерактивная система мотивации и развития сотрудников',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="ru">
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
<Toaster position="top-right" richColors />
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user