Home / File/ fonts.ts — ui Source File

fonts.ts — ui Source File

Architecture documentation for fonts.ts, a typescript file in the ui codebase. 1 imports, 1 dependents.

File typescript DesignEngine 1 imports 1 dependents

Entity Profile

Dependency Diagram

graph LR
  181dc3d7_6787_1cda_62bd_34c7ec49be1c["fonts.ts"]
  85256a8d_6bc0_0b85_aeec_351b43eef6a7["google"]
  181dc3d7_6787_1cda_62bd_34c7ec49be1c --> 85256a8d_6bc0_0b85_aeec_351b43eef6a7
  df343824_4cf7_9acf_b32f_d24333834c03["randomize-biases.ts"]
  df343824_4cf7_9acf_b32f_d24333834c03 --> 181dc3d7_6787_1cda_62bd_34c7ec49be1c
  style 181dc3d7_6787_1cda_62bd_34c7ec49be1c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {
  DM_Sans,
  Figtree,
  Geist,
  Geist_Mono,
  Inter,
  JetBrains_Mono,
  Noto_Sans,
  Nunito_Sans,
  Outfit,
  Public_Sans,
  Raleway,
  Roboto,
} from "next/font/google"

const inter = Inter({
  subsets: ["latin"],
  variable: "--font-inter",
})

const notoSans = Noto_Sans({
  subsets: ["latin"],
  variable: "--font-noto-sans",
})

const nunitoSans = Nunito_Sans({
  subsets: ["latin"],
  variable: "--font-nunito-sans",
})

const figtree = Figtree({
  subsets: ["latin"],
  variable: "--font-figtree",
})

const jetbrainsMono = JetBrains_Mono({
  subsets: ["latin"],
  variable: "--font-jetbrains-mono",
})

const geistSans = Geist({
  subsets: ["latin"],
  variable: "--font-geist-sans",
})

const geistMono = Geist_Mono({
  subsets: ["latin"],
  variable: "--font-geist-mono",
})

const roboto = Roboto({
  subsets: ["latin"],
  variable: "--font-roboto",
})

const raleway = Raleway({
  subsets: ["latin"],
  variable: "--font-raleway",
})

// ... (92 more lines)

Domain

Types

Dependencies

  • google

Frequently Asked Questions

What does fonts.ts do?
fonts.ts is a source file in the ui codebase, written in typescript. It belongs to the DesignEngine domain.
What does fonts.ts depend on?
fonts.ts imports 1 module(s): google.
What files import fonts.ts?
fonts.ts is imported by 1 file(s): randomize-biases.ts.
Where is fonts.ts in the architecture?
fonts.ts is located at apps/v4/app/(create)/lib/fonts.ts (domain: DesignEngine, directory: apps/v4/app/(create)/lib).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free