mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 15:13:50 -05:00
* fix: add gitattribute rules for woff2 files * feat: add lifi widget + fixes minor issues * fix: remove unused packages + clean constants declaration and config * fix: update dockerfile and github ci workflows * fix: env variable naming issue * fix: bridge mode alt value issue + remove button component
31 lines
666 B
TypeScript
31 lines
666 B
TypeScript
import localFont from "next/font/local";
|
|
|
|
const atypFont = localFont({
|
|
display: "swap",
|
|
src: [
|
|
{
|
|
path: "../../../public/fonts/AtypDisplay-Regular-subset.woff2",
|
|
weight: "400",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "../../../public/fonts/AtypDisplay-Medium-subset.woff2",
|
|
weight: "500",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "../../../public/fonts/AtypDisplay-Semibold-subset.woff2",
|
|
weight: "600",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "../../../public/fonts/AtypDisplay-Bold-subset.woff2",
|
|
weight: "700",
|
|
style: "normal",
|
|
},
|
|
],
|
|
variable: "--font-atyp",
|
|
});
|
|
|
|
export default atypFont;
|