docs: add error page (#13839)

This commit is contained in:
Shahed Nasser
2025-10-23 18:10:42 +03:00
committed by GitHub
parent 4ab185c685
commit 012e30801e
20 changed files with 653 additions and 62 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Inter, Roboto_Mono } from "next/font/google"
export const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
weight: ["400", "500"],
})
export const robotoMono = Roboto_Mono({
subsets: ["latin"],
variable: "--font-roboto-mono",
})