Skip to content

Commit

Permalink
Merge remote-tracking branch 'merkl-app/main' (#4)
Browse files Browse the repository at this point in the history
* Merge remote-tracking branch 'merkl-app/main'

* update dappkit

* lint
  • Loading branch information
hugolxt authored and clmntsnr committed Jan 7, 2025
1 parent 21c7dfd commit c02f982
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions merkl.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,20 @@ export default createConfig({
protocols: {
icon: "RiVipCrown2Fill",
route: "/protocols",
<<<<<<< HEAD
key: uuidv4(),
=======
key: crypto.randomUUID(),
>>>>>>> 85e15ff (Merge remote-tracking branch 'merkl-app/main' (#4))
},
bridge: {
icon: "RiCompassesLine",
route: "/bridge",
<<<<<<< HEAD
key: uuidv4(),
=======
key: crypto.randomUUID(),
>>>>>>> 85e15ff (Merge remote-tracking branch 'merkl-app/main' (#4))
},
docs: {
icon: "RiFile4Fill",
Expand Down Expand Up @@ -207,13 +215,25 @@ export default createConfig({
enabled: true,
},
},
header: {
searchbar: {
enabled: true,
},
opportunities: {
enabled: false,
},
bridge: {
enabled: true,
},
},
socials: {
discord: "https://discord.com/invite/pufferfi",
telegram: "https://t.me/puffer_fi",
x: "https://x.com/puffer_finance",
github: "https://github.com/PufferFinance",
},
links: {
docs: "https://docs.merkl.xyz/",
merkl: "https://merkl.xyz/",
merklTermsConditions: "https://app.merkl.xyz/merklTerms.pdf",
merklPrivacy: "https://privacy.angle.money",
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ export default function Header() {
<Group className="hidden lg:flex items-center" size="xl">
{Object.entries(routes)
.filter(([key]) => !["home", "faq", "docs"].includes(key))
.map(([key, { route }]) => {
.map(([key, route]) => {
return (
<Button
className={`${["faq"].includes(key) ? "uppercase" : "capitalize"}`}
look="soft"
size="lg"
key={`${key}-link`}
to={route}>
to={route?.route}>
{key}
</Button>
);
Expand Down
Binary file added src/customer/assets/fonts/Obviously_Bold.otf
Binary file not shown.
Binary file added src/customer/assets/fonts/Obviously_Bold.woff
Binary file not shown.
Binary file added src/customer/assets/fonts/Obviously_Bold.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/customer/assets/fonts/Obviously_Semi.otf
Binary file not shown.
Binary file added src/customer/assets/fonts/Obviously_Semi.woff
Binary file not shown.
Binary file added src/customer/assets/fonts/Obviously_Semi.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 changes: 4 additions & 4 deletions src/customer/assets/style/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

@font-face {
font-family: "Recoleta";
src: url("../assets/fonts/Recoleta-Bold.woff2") format("woff2");
src: url("../assets/fonts/Recoleta-Bold.woff") format("woff");
src: url("../assets/fonts/Recoleta-Bold.otf") format("opentype");
src: url("../assets/fonts/Recoleta-Bold.ttf") format("truetype");
src: url("../fonts/Recoleta-Bold.woff2") format("woff2");
src: url("../fonts/Recoleta-Bold.woff") format("woff");
src: url("../fonts/Recoleta-Bold.otf") format("opentype");
src: url("../fonts/Recoleta-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
font-display: swap;
Expand Down

0 comments on commit c02f982

Please sign in to comment.