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} ); }