change font again

This commit is contained in:
Milo Schwartz 2024-11-23 11:42:22 -05:00
parent cd3d4ce2b2
commit 283a87d96d
4 changed files with 7 additions and 7 deletions

View file

@ -175,7 +175,7 @@ export default function Header({ email, orgName, name, orgs }: HeaderProps) {
<CommandEmpty>
No organization found.
</CommandEmpty>
<CommandGroup>
<CommandGroup className="[50px]">
<CommandList>
{orgs.map((org) => (
<CommandItem

View file

@ -54,7 +54,6 @@ export function TopbarNav({
<div className="hidden md:block">{item.icon}</div>
)}
<span className="relative z-10">{item.title}</span>
<span className="absolute inset-x-0 bottom-0 border-b-2 border-transparent group-hover:border-primary"></span>
</div>
</Link>
))}

View file

@ -85,17 +85,17 @@ export default async function ResourceLayout(props: ResourceLayoutProps) {
{
title: "General",
href: `/{orgId}/settings/resources/{resourceId}/general`,
icon: <Settings className="w-4 h-4" />,
// icon: <Settings className="w-4 h-4" />,
},
{
title: "Connectivity",
href: `/{orgId}/settings/resources/{resourceId}/connectivity`,
icon: <Cloud className="w-4 h-4" />,
// icon: <Cloud className="w-4 h-4" />,
},
{
title: "Authentication",
href: `/{orgId}/settings/resources/{resourceId}/authentication`,
icon: <Shield className="w-4 h-4" />,
// icon: <Shield className="w-4 h-4" />,
},
];

View file

@ -1,6 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { IBM_Plex_Sans, Work_Sans } from "next/font/google";
import { Figtree, IBM_Plex_Sans, Inter, Work_Sans } from "next/font/google";
import { Toaster } from "@/components/ui/toaster";
import { ThemeProvider } from "@app/providers/ThemeProvider";
@ -11,9 +11,10 @@ export const metadata: Metadata = {
// const font = Inter({ subsets: ["latin"] });
// const font = Noto_Sans_Mono({ subsets: ["latin"] });
const font = Work_Sans({ subsets: ["latin"] });
// const font = Work_Sans({ subsets: ["latin"] });
// const font = Space_Grotesk({subsets: ["latin"]})
// const font = IBM_Plex_Sans({subsets: ["latin"], weight: "400"})
const font = Figtree({ subsets: ["latin"] });
export default async function RootLayout({
children,