mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
18 lines
382 B
TypeScript
18 lines
382 B
TypeScript
// Google Fonts are loaded via index.html or CSS
|
|
// This file exports font configuration for use in the app
|
|
|
|
export const manrope = {
|
|
variable: "--font-manrope",
|
|
className: "font-manrope",
|
|
};
|
|
|
|
export const geistSans = {
|
|
variable: "--font-geist-sans",
|
|
className: "font-geist-sans",
|
|
};
|
|
|
|
export const geistMono = {
|
|
variable: "--font-geist-mono",
|
|
className: "font-geist-mono",
|
|
};
|