From da7675fcd3a640d2a05545172e902029a9cb9459 Mon Sep 17 00:00:00 2001 From: Pavel Dovhomilja Date: Thu, 23 Nov 2023 14:40:43 +0100 Subject: [PATCH] Update headers for SEO --- app/[locale]/layout.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 85a0591..022ddc5 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -3,6 +3,8 @@ import "./globals.css"; import { Inter } from "next/font/google"; import { GeistSans, GeistMono } from "geist/font"; +import type { Metadata } from "next"; + import { ReactNode } from "react"; import { notFound } from "next/navigation"; import { createTranslator, NextIntlClientProvider } from "next-intl"; @@ -12,6 +14,11 @@ import { ThemeProvider } from "@/app/providers/ThemeProvider"; const inter = Inter({ subsets: ["latin"] }); +export const metadata: Metadata = { + title: "NextCRM.io", + description: "NextCRM is an open source CRM build on top of NextJS.", +}; + type Props = { children: ReactNode; params: { locale: string };