mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 21:44:06 +01:00
Update font and Metadata
This commit is contained in:
parent
e09bd55f83
commit
bfc6879a53
@ -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 (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
<body className={`${montserrat.className}`}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user