-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from privacy-scaling-explorations/fix-navigat…
…ion-issues fix navigation issues
- Loading branch information
Showing
6 changed files
with
9 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
import { | ||
Space_Grotesk as FontDisplay, | ||
JetBrains_Mono as FontMono, | ||
DM_Sans as FontSans, | ||
} from "next/font/google" | ||
|
||
export const fontSans = FontSans({ | ||
subsets: ["latin"], | ||
variable: "--font-sans", | ||
weight: ["400", "500", "700"], | ||
display: "swap", | ||
}) | ||
|
||
export const fontDisplay = FontDisplay({ | ||
subsets: ["latin"], | ||
variable: "--font-display", | ||
weight: ["400", "500", "700"], | ||
}) | ||
|
||
export const fontMono = FontMono({ | ||
subsets: ["latin"], | ||
variable: "--font-mono", | ||
display: "swap", | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters