Skip to content

Commit

Permalink
chore: Update layout component and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBacas committed Jul 19, 2024
1 parent cf1da2b commit 9e62d6a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
import { Toaster } from 'sonner';
import { Metadata } from 'next';

import { Providers } from './providers';
import './global.css';
import Header from '../components/Header';

export const metadata: Metadata = {
title: 'Overseer | Groupes Parlementaires',
description: 'Overseer is a backoffice tool for Augora activities.',
keywords: 'Overseer, Augora, backoffice, Parlementaires, tool, activities',
authors: {
name: 'Augora',
},
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="dark">
<body>
<Toaster />
<Header />
<div className="p-3">
<div className="p-10">
<Providers>{children}</Providers>
</div>
</body>
Expand Down

0 comments on commit 9e62d6a

Please sign in to comment.