Skip to content

Commit

Permalink
feat(metadata): improve metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
arnolanglade committed Nov 3, 2023
1 parent 7fe475e commit 13786ad
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ import { ServiceContainerProvider } from '@/tools/service-container-context';
import IntlProvider from '@/tools/i18n/intl-provider';
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
import { Metadata } from 'next';

const inter = Inter({ subsets: ['latin'] });

export const metadata = {
title: 'Refactor',
description: 'Refactor thanks to the mikado method',
export const metadata: Metadata = {
title: 'MikadoApp - The Mikado Method applied to your projects',
description: 'MikadoApp is a tool to help you apply the Mikado Method to your projects.',
authors: {
name: 'Arnaud Langlade',
url: 'https://arnolanglade.github.io',
},
};

export default function RootLayout({
Expand Down

0 comments on commit 13786ad

Please sign in to comment.