This commit is contained in:
phact 2025-08-18 22:37:09 -04:00
parent 9912a40f09
commit 0aeaa93aba
2 changed files with 1 additions and 7 deletions

View file

@ -35,12 +35,6 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<link
href="https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
rel="stylesheet"
/>
</head>
<body
className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased`}
>

View file

@ -1,7 +1,7 @@
"use client"
import { usePathname } from "next/navigation"
import { Bell, BellRing } from "lucide-react"
import { Bell } from "lucide-react"
import { Button } from "@/components/ui/button"
import { Navigation } from "@/components/navigation"
import { UserNav } from "@/components/user-nav"