Skip to content

Commit

Permalink
added the font
Browse files Browse the repository at this point in the history
  • Loading branch information
Priyanshu9898 committed Dec 18, 2024
1 parent cd43d03 commit c4690fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
1 change: 1 addition & 0 deletions CITATION.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Wealth Manager

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5759097.svg)](https://doi.org/10.5281/zenodo.5759097)

<a href="https://doi.org/10.5281/zenodo.5759097">Zenodo DOI Link</a>
Expand Down
20 changes: 4 additions & 16 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Inter } from "next/font/google";

const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});

const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Create Next App",
title: "Wealth Manager",
description: "Generated by create next app",
};

Expand All @@ -24,11 +16,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
<body className={`${inter.className}`}>{children}</body>
</html>
);
}

0 comments on commit c4690fc

Please sign in to comment.