diff options
| author | real-zephex <[email protected]> | 2024-05-03 12:28:53 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-03 12:28:53 +0530 |
| commit | 5e1fb505acabab5d6ceb38be898ab1a3368ae567 (patch) | |
| tree | 97c725f2234c6b5dc7f6afa6b71c0f29c845de34 /src/app/layout.jsx | |
| parent | removed unused pictures from the public directory (diff) | |
| parent | some more changes (diff) | |
| download | dramalama-5e1fb505acabab5d6ceb38be898ab1a3368ae567.tar.xz dramalama-5e1fb505acabab5d6ceb38be898ab1a3368ae567.zip | |
Merge pull request #11 from zephex-alt/deploy-on-cloudflare
video player change, font changes and other minor changes
Diffstat (limited to 'src/app/layout.jsx')
| -rw-r--r-- | src/app/layout.jsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/app/layout.jsx b/src/app/layout.jsx index 2cedeb0..f16ed98 100644 --- a/src/app/layout.jsx +++ b/src/app/layout.jsx @@ -1,10 +1,12 @@ -import { Inter } from "next/font/google"; +import { Lexend_Deca } from "next/font/google"; import "./globals.css"; import Header from "./components/header/header"; import Footer from "./components/footer/page"; import { SpeedInsights } from "@vercel/speed-insights/next"; import { Analytics } from "@vercel/analytics/react"; +const lexend = Lexend_Deca({ subsets: ["latin"] }); + export const metadata = { title: "Dramalama", description: @@ -39,7 +41,7 @@ export const metadata = { export default function RootLayout({ children }) { return ( - <html lang="en"> + <html lang="en" className={lexend.className}> <body> <SpeedInsights /> <Analytics /> |