From 13786ad5e84186172c957469fe93d974e27049a0 Mon Sep 17 00:00:00 2001 From: arnaud Date: Fri, 3 Nov 2023 11:41:02 +0100 Subject: [PATCH] feat(metadata): improve metadata --- app/layout.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 1136f2d..c45dd11 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -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({