25 lines
545 B
TypeScript
25 lines
545 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
import { Inter } from 'next/font/google';
|
|
import Layout from '@/components/Layout';
|
|
|
|
const inter = Inter({ subsets: ['latin'] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Work Item Manager',
|
|
description: 'Manage your work items efficiently',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
<Layout>{children}</Layout>
|
|
</body>
|
|
</html>
|
|
);
|
|
} |