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 10b98ac commit 3b96e55
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 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 } from "next/font/google";
import { Geist, Geist_Mono, Monoton, Manrope } from "next/font/google";
import "./globals.css";

const geistSans = Geist({
Expand All @@ -17,6 +17,11 @@ const monoton = Monoton({
weight: "400",
});

const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
})

export const metadata = {
title: "Game-changer: How do the major sports events influence YouTube engagement?",
description: "Created by Robodatapioneers2024",
Expand All @@ -26,7 +31,7 @@ export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} ${monoton.variable} antialiased`}
className={`${geistSans.variable} ${geistMono.variable} ${monoton.variable} ${manrope.variable} antialiased`}
>
{children}
</body>
Expand Down
2 changes: 1 addition & 1 deletion app/lda_texts.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function worldCupLDA() {
return (
<div className="flex flex-col space-y-2 p-4 w-full max-w-4xl text-lg text-left">
<h3 className="text-2xl font-bold mb-2">Fifa World Cup LDA</h3>
<h3 className="text-2xl font-bold mb-2">FIFA World Cup LDA</h3>
<p>
Delving into the FIFA World Cup section of our analysis, our{" "}
<strong>LDA</strong> model uncovered a rich tapestry of themes
Expand Down
2 changes: 1 addition & 1 deletion app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function VariableChooserComponent({ Title, variables, children }) {

return (
<div className="flex flex-col space-y-2 p-4 max-w-4xl">
<h3 className="text-2xl font-bold mb-2">{Title}</h3>
<h3 className="text-1xl font-bold mb-2 text-center">{Title}</h3>
{variables.length > 1 && (
<select
value={selectedVariable}
Expand Down

0 comments on commit 3b96e55

Please sign in to comment.