Skip to content

Commit

Permalink
Update headers for SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
pdovhomilja committed Nov 23, 2023
1 parent 958815c commit da7675f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/[locale]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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 };
Expand Down

0 comments on commit da7675f

Please sign in to comment.