Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/app/bi/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Bricolage_Grotesque, Source_Serif_4, Spline_Sans_Mono } from 'next/font/google'
import VersionBImpeccable from '@/components/version-bi'

// Impeccable type system, route-scoped (kept off the global layout so versions
// A/B/C/D in the cream design are untouched).
const display = Bricolage_Grotesque({ subsets: ['latin'], variable: '--ve-display', display: 'swap' })
const body = Source_Serif_4({ subsets: ['latin'], variable: '--ve-body', display: 'swap' })
const mono = Spline_Sans_Mono({ subsets: ['latin'], variable: '--ve-mono', display: 'swap' })

export default function VersionBImpeccablePage() {
return <VersionBImpeccable fontVars={`${display.variable} ${body.variable} ${mono.variable}`} />
}
12 changes: 12 additions & 0 deletions app/app/di/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Bricolage_Grotesque, Source_Serif_4, Spline_Sans_Mono } from 'next/font/google'
import VersionDImpeccable from '@/components/version-di'

// Impeccable type system, route-scoped (kept off the global layout so versions
// A/B/C/D in the cream design are untouched).
const display = Bricolage_Grotesque({ subsets: ['latin'], variable: '--ve-display', display: 'swap' })
const body = Source_Serif_4({ subsets: ['latin'], variable: '--ve-body', display: 'swap' })
const mono = Spline_Sans_Mono({ subsets: ['latin'], variable: '--ve-mono', display: 'swap' })

export default function VersionDImpeccablePage() {
return <VersionDImpeccable fontVars={`${display.variable} ${body.variable} ${mono.variable}`} />
}
Loading