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> <CommandEmpty>
No organization found. No organization found.
</CommandEmpty> </CommandEmpty>
<CommandGroup> <CommandGroup className="[50px]">
<CommandList> <CommandList>
{orgs.map((org) => ( {orgs.map((org) => (
<CommandItem <CommandItem

View file

@ -54,7 +54,6 @@ export function TopbarNav({
<div className="hidden md:block">{item.icon}</div> <div className="hidden md:block">{item.icon}</div>
)} )}
<span className="relative z-10">{item.title}</span> <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> </div>
</Link> </Link>
))} ))}

View file

@ -85,17 +85,17 @@ export default async function ResourceLayout(props: ResourceLayoutProps) {
{ {
title: "General", title: "General",
href: `/{orgId}/settings/resources/{resourceId}/general`, href: `/{orgId}/settings/resources/{resourceId}/general`,
icon: <Settings className="w-4 h-4" />, // icon: <Settings className="w-4 h-4" />,
}, },
{ {
title: "Connectivity", title: "Connectivity",
href: `/{orgId}/settings/resources/{resourceId}/connectivity`, href: `/{orgId}/settings/resources/{resourceId}/connectivity`,
icon: <Cloud className="w-4 h-4" />, // icon: <Cloud className="w-4 h-4" />,
}, },
{ {
title: "Authentication", title: "Authentication",
href: `/{orgId}/settings/resources/{resourceId}/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 type { Metadata } from "next";
import "./globals.css"; 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 { Toaster } from "@/components/ui/toaster";
import { ThemeProvider } from "@app/providers/ThemeProvider"; import { ThemeProvider } from "@app/providers/ThemeProvider";
@ -11,9 +11,10 @@ export const metadata: Metadata = {
// const font = Inter({ subsets: ["latin"] }); // const font = Inter({ subsets: ["latin"] });
// const font = Noto_Sans_Mono({ 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 = Space_Grotesk({subsets: ["latin"]})
// const font = IBM_Plex_Sans({subsets: ["latin"], weight: "400"}) // const font = IBM_Plex_Sans({subsets: ["latin"], weight: "400"})
const font = Figtree({ subsets: ["latin"] });
export default async function RootLayout({ export default async function RootLayout({
children, children,