mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-11 14:34:55 +02:00
rearage top nav bar
This commit is contained in:
parent
7a019ccd32
commit
23b98960cc
7 changed files with 92 additions and 98 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue