Skip to content

Commit

Permalink
update bridgeworld v2 link
Browse files Browse the repository at this point in the history
  • Loading branch information
alecananian committed Oct 24, 2024
1 parent 196cae5 commit 04c6fa8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/components/new-landing/misc/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const LINKS = {
DEVELOPERS:
"https://docs.treasure.lol/ecosystem/builders-program/introduction?utm_source=marketing_site",
APP: "https://app.treasure.lol?utm_source=marketing_site",
GAMES: "https://app.treasure.lol/games?utm_source=marketing_site",
CREATORS:
"https://go.treasure.lol/creator-application?utm_source=marketing_site",
GAMES: "https://app.treasure.lol/games?utm_source=marketing_site",
MARKET: "https://market.treasure.lol/?utm_source=marketing_site",
MAGICSWAP: "https://magicswap.lol/?utm_source=marketing_site",
MAGICSWAP_DOCS:
Expand All @@ -26,5 +26,5 @@ export const LINKS = {
CAREERS: "https://jobs.treasure.lol?utm_source=marketing_site",
GOVERNANCE: "https://forum.treasure.lol?utm_source=marketing_site",
SNAPSHOT: "https://vote.treasure.lol?utm_source=marketing_site",
BRIDGEWORLD: "https://bridgeworld.treasure.lol?utm_source=marketing_site",
BRIDGEWORLD: "https://bridgeworld.gg?utm_source=marketing_site",
};
17 changes: 9 additions & 8 deletions app/const.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ import {
XIcon,
UsersIcon,
} from "~/components/Icons";
import { LINKS, SOCIAL } from "./components/new-landing/misc/const";

export const teams = [
"Core",
Expand Down Expand Up @@ -545,23 +546,23 @@ export const infrastructures = [
description:
"Play, collect, trade, compete, and discover your new favorite games on Treasure.",
buttonDescription: "Visit App",
href: "https://app.treasure.lol",
href: LINKS.APP,
},
{
name: "Magicswap",
icon: <AMMIcon className="h-10 w-10" aria-hidden="true" />,
description:
"Magicswap powers the cross-game economy by supporting the trading of native tokens for games powererd by Treasure with each liquidity pool using MAGIC as the base pair.",
buttonDescription: "Visit Magicswap",
href: "https://magicswap.lol",
href: LINKS.MAGICSWAP,
},
{
name: "Economy",
icon: <EconomyIcon className="h-10 w-10" aria-hidden="true" />,
description:
"Bridgeworld powers the shared economy for Treasure through a generalised economic framework designed to foster cross-metaverse relationships and resource sharing.",
buttonDescription: "Discover Bridgeworld",
href: "https://bridgeworld.treasure.lol",
href: LINKS.BRIDGEWORLD,
},
];

Expand Down Expand Up @@ -596,7 +597,7 @@ export const IndexCTA = [
name: "Games",
description: "Games powered by Treasure through MAGIC.",
icon: <CartridgesIcon className="h-8 w-8" aria-hidden="true" />,
href: "https://app.treasure.lol/",
href: LINKS.GAMES,
isExternal: true,
},
{
Expand All @@ -606,14 +607,14 @@ export const IndexCTA = [
icon: (
<MagicLogoIcon className="h-7 w-7 text-ruby-900" aria-hidden="true" />
),
href: "https://app.treasure.lol",
href: LINKS.APP,
isExternal: true,
},
{
name: "Magicswap",
description: "Magicswap powers the cross-game economy.",
icon: <AMMIcon className="h-8 w-8" aria-hidden="true" />,
href: "https://magicswap.lol/",
href: LINKS.MAGICSWAP,
isExternal: true,
},
];
Expand Down Expand Up @@ -820,12 +821,12 @@ export type CartridgeT = (typeof cartridges)[number];
export const socials = [
{
name: "Discord",
href: "http://discord.gg/treasuredao",
href: SOCIAL.DISCORD,
icon: (props: { className?: string }) => <DiscordIcon {...props} />,
},
{
name: "X",
href: "https://x.com/Treasure_DAO",
href: SOCIAL.TWITTER,
icon: (props: { className?: string }) => <XIcon {...props} />,
},
];
Expand Down

0 comments on commit 04c6fa8

Please sign in to comment.