Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";

import clsx from "clsx";
import { Urbanist } from "next/font/google";

import Footer from "@/components/Footer";
Expand All @@ -22,10 +23,10 @@ export default async function RootLayout({

return (
<html lang="en">
<body className="antialiased">
<main className={urbanist.className}>
<body className="bg-background-1 antialiased">
<main className={clsx(urbanist.className)}>
<Navbar {...{ navbarData }} />
{children}
<div className="mx-auto max-w-7xl"> {children} </div>
<Footer />
</main>
</body>
Expand Down