Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andresnowak committed Dec 21, 2024
1 parent 4b51ae1 commit 10dca53
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/home_layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function LandingPage() {
className="absolute inset-0 w-full h-full opacity-50"
></canvas>
<div className="absolute inset-0 flex items-center justify-center px-20">
<h1 className="text-8xl text-black text-center font-monoton">
<h1 className="text-[10rem] text-black text-center font-rowdies">
Game-changer
</h1>
</div>
Expand Down
10 changes: 8 additions & 2 deletions app/layout.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Geist, Geist_Mono, Monoton, Manrope } from "next/font/google";
import { Geist, Geist_Mono, Monoton, Manrope, Rowdies } from "next/font/google";
import "./globals.css";

const geistSans = Geist({
Expand All @@ -22,6 +22,12 @@ const manrope = Manrope({
subsets: ["latin"],
})

const rowdies = Rowdies({
variable: "--font-rowdies",
subsets: ["latin"],
weight: ["300", "400", "700"]
})

export const metadata = {
title: "Game-changer: How do the major sports events influence YouTube engagement?",
description: "Created by Robodatapioneers2024",
Expand All @@ -31,7 +37,7 @@ export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} ${monoton.variable} ${manrope.variable} antialiased`}
className={`${geistSans.variable} ${geistMono.variable} ${monoton.variable} ${manrope.variable} ${rowdies.variable} antialiased`}
>
{children}
</body>
Expand Down
2 changes: 2 additions & 0 deletions tailwind.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export default {
sans: ["var(--font-geist-sans)"],
mono: ["var(--font-geist-mono)"],
monoton: ["var(--font-monoton)"],
manrope: ["var(--font-manrope)"],
rowdies: ["var(--font-rowdies)"],
},
},
},
Expand Down

0 comments on commit 10dca53

Please sign in to comment.