Files
linea-monorepo/bridge-ui/src/assets/fonts/atyp.ts
Victorien Gauch 5b09005765 Feat: add lifi and small fixes (#798)
* 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
2025-03-24 14:28:42 +01:00

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;