Skip to content

Commit

Permalink
chore: added font type in font interface
Browse files Browse the repository at this point in the history
  • Loading branch information
JayeshVP24 committed Feb 12, 2024
1 parent 0060b96 commit fd5c42b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/fonts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ interface Font {
title: string | null;
fileName: string | null;
link: string | null;
type?: "sans-serif" | "serif" | "handwritten" | "display"
}
export interface FontAlt {
main: Font;
Expand All @@ -15,7 +16,7 @@ const fonts: FontAlt[] = [
main: {
title: 'Circular Std',
fileName: 'Circular',
link: 'https://lineto.com/typefaces/circular'
link: 'https://lineto.com/typefaces/circular',
},
alternativeOne: {
title: 'Manrope',
Expand Down

0 comments on commit fd5c42b

Please sign in to comment.