-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new states to context, local fonts, neon glow option
- Loading branch information
Showing
16 changed files
with
188 additions
and
39 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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import localFont from "next/font/local"; | ||
import { Orbitron, Tektur } from "next/font/google"; | ||
|
||
// ---- local ---- | ||
|
||
export const localPixel1 = localFont({ | ||
src: "./PixelifySans-VariableFont_wght.ttf", | ||
variable: "--local-pixel1", | ||
}); | ||
|
||
export const localPixel2 = localFont({ | ||
src: "./thirteen-pixel-fonts.regular.ttf", | ||
variable: "--local-pixel2", | ||
}); | ||
|
||
export const localhandwritten = localFont({ | ||
src: './Caveat-VariableFont_wght.ttf', | ||
variable: "--local-handwritten" | ||
}) | ||
|
||
export const localOrbitron = localFont({ | ||
src: "./Orbitron-VariableFont_wght.ttf", | ||
variable: "--local-orbitron", | ||
}); | ||
|
||
export const localTektur = localFont({ | ||
src: "./Tektur-VariableFont_wdth,wght.ttf", | ||
variable: "--local-tektur", | ||
}); | ||
|
||
|
||
// ------ for dev ------ | ||
|
||
export const orbitron = Orbitron({ | ||
subsets: ["latin"], | ||
variable: "--font-orbitron", | ||
}); | ||
export const tektur = Tektur({ subsets: ["latin"], variable: "--font-tektur" }); | ||
// ------- |
Binary file not shown.
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