From 10dca534bd88e41c59bbcf5b1944678d043c8937 Mon Sep 17 00:00:00 2001 From: andres Date: Sat, 21 Dec 2024 01:50:20 +0100 Subject: [PATCH] fix --- app/home_layout.js | 2 +- app/layout.js | 10 ++++++++-- tailwind.config.mjs | 2 ++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/app/home_layout.js b/app/home_layout.js index b1a2885..cf7b75f 100644 --- a/app/home_layout.js +++ b/app/home_layout.js @@ -85,7 +85,7 @@ function LandingPage() { className="absolute inset-0 w-full h-full opacity-50" >
-

+

Game-changer

diff --git a/app/layout.js b/app/layout.js index ec4026e..07b4caf 100644 --- a/app/layout.js +++ b/app/layout.js @@ -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({ @@ -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", @@ -31,7 +37,7 @@ export default function RootLayout({ children }) { return ( {children} diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 20d2f4a..3690c3d 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -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)"], }, }, },