Skip to content

Commit

Permalink
configures font
Browse files Browse the repository at this point in the history
  • Loading branch information
shlok-py committed Oct 19, 2024
1 parent 786a9de commit bf5b5a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const geistMono = localFont({
weight: "100 900",
});



export const metadata: Metadata = {
title: "Shlok Koirala",
description: "Created by Shlok Koirala",
Expand Down
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import exp from "constants";
import { Rubik, Afacad } from "next/font/google";
import Image from "next/image";

export const titleFont = Rubik({
const titleFont = Rubik({
subsets: ['latin'],
weight: 'variable',
});
export const bodyFont = Afacad({
const bodyFont = Afacad({
subsets: ['latin'],
weight: 'variable',
});
Expand Down

0 comments on commit bf5b5a1

Please sign in to comment.