Skip to content

Commit aa4b9bc

Browse files
committed
feat: font changed to Anek Odia
1 parent 7e4090e commit aa4b9bc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/src/app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22

33
import clsx from "clsx";
4-
import { Urbanist } from "next/font/google";
4+
import { Anek_Odia } from "next/font/google";
55

66
import Footer from "@/components/Footer";
77
import Navbar from "@/components/Navbar";
@@ -11,7 +11,7 @@ import "@/styles/globals.css";
1111
import { getHeroImgsProps } from "@/utils/getHeroImgsProps";
1212
import { request } from "@/utils/graphQLClient";
1313

14-
const urbanist = Urbanist({
14+
const font = Anek_Odia({
1515
weight: ["400", "500"],
1616
subsets: ["latin"],
1717
});
@@ -40,7 +40,7 @@ export default async function RootLayout({
4040
))}
4141
</head>
4242
<body className="min-w-80 bg-background-1 antialiased">
43-
<main className={clsx(urbanist.className)}>
43+
<main className={clsx(font.className)}>
4444
<Navbar {...{ navbarData }} />
4545
<div className="mx-auto max-w-screen-2xl"> {children} </div>
4646
<Footer />

frontend/src/styles/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ html {
4747
body {
4848
color: var(--foreground);
4949
background: var(--background);
50-
font-family: Urbanist, Helvetica, sans-serif;
50+
font-family: Anek_Odia, Helvetica, sans-serif;
5151
font-size: 16px;
5252
font-weight: 400;
5353
line-height: 19px;

0 commit comments

Comments
 (0)