rearage top nav bar

This commit is contained in:
Milo Schwartz 2024-10-14 12:10:02 -04:00
parent 7a019ccd32
commit 23b98960cc
No known key found for this signature in database
7 changed files with 92 additions and 98 deletions

View file

@ -1,14 +1,14 @@
import type { Metadata } from "next";
import "./globals.css";
import { Roboto } from "next/font/google";
import { Toaster } from "@/components/ui/toaster"
import { Inter, Roboto } from "next/font/google";
import { Toaster } from "@/components/ui/toaster";
export const metadata: Metadata = {
title: process.env.NEXT_PUBLIC_APP_NAME,
description: "",
};
const font = Roboto({ subsets: ["latin"], style: "normal", weight: "400" });
const font = Inter({ subsets: ["latin"] });
export default async function RootLayout({
children,
@ -17,7 +17,7 @@ export default async function RootLayout({
}>) {
return (
<html>
<body className={`${font.className}`}>
<body className={`${font.className} pb-3`}>
<main>{children}</main>
<Toaster />
</body>