Files
Hayden Bleasel 101ca62c2d Update docs styles (#22)
* Initial implementation

* Bump deps

* Update code-block.tsx

* Update navbar.tsx

* Move video to Geistdocs

* Update layout.tsx

* Margin fixes

* Update code-block-tabs.tsx

* Update docs-page.tsx

* Update navbar.tsx

* Add feed

* Update docs-layout.tsx

* Update mobile-menu.tsx

* Fix adaptable layout

* Update docs-page.tsx

* Update docs page composability

* Update global.css

* Remove unused AI Elements

* Update Feedback
2025-11-14 11:56:29 -08:00

19 lines
343 B
TypeScript

import {
Geist_Mono as createMono,
Geist as createSans,
} from "next/font/google";
export const sans = createSans({
variable: "--font-sans",
subsets: ["latin"],
weight: "variable",
display: "swap",
});
export const mono = createMono({
variable: "--font-mono",
subsets: ["latin"],
weight: "variable",
display: "swap",
});