From bfc6879a53ecef90a01bd4d1c2ec84fd03be6115 Mon Sep 17 00:00:00 2001 From: sirin Date: Thu, 29 Aug 2024 08:45:32 +0700 Subject: [PATCH] Update font and Metadata --- src/app/layout.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 630cd28..a2455c5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,18 @@ import type { Metadata } from "next"; +import { Montserrat } from "next/font/google"; import "@/app/globals.css"; +const montserrat = Montserrat({ + subsets: ["latin"], + display: "swap", +}); + export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: { + template: "%s | B2DVentures", + default: "B2DVentures", + }, + description: "B2DVentures is a financial services company.", }; export default function RootLayout({ @@ -13,7 +22,7 @@ export default function RootLayout({ }>) { return ( - {children} + {children} ); }