Skip to content

Commit

Permalink
fix about us grammar; add market link to nav
Browse files Browse the repository at this point in the history
  • Loading branch information
alecananian committed Sep 22, 2024
1 parent 224a1a0 commit 80c520b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
11 changes: 8 additions & 3 deletions app/components/NewNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,22 @@ const dropdownItems: DropDownItems[] = [
{
label: "Treasure App",
type: "external",
target: "https://app.treasure.lol",
target: LINKS.APP,
},
{
label: "Treasure Market",
type: "external",
target: LINKS.MARKET,
},
{
label: "Magicswap",
type: "external",
target: "https://magicswap.lol",
target: LINKS.MAGICSWAP,
},
{
label: "Developer Documentation",
type: "external",
target: "https://docs.treasure.lol/",
target: LINKS.DOCUMENTATION,
},
],
},
Expand Down
5 changes: 5 additions & 0 deletions app/components/new-landing/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ const FooterLinks = [
url: LINKS.APP,
external: true,
},
{
title: "Treasure Market",
url: LINKS.MARKET,
external: true,
},
{
title: "Creator Program",
url: "/create",
Expand Down
4 changes: 2 additions & 2 deletions app/routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export default function About() {
<div className="mx-auto mt-16 max-w-sm px-4 text-center sm:max-w-4xl sm:px-8 lg:px-20">
<div className="rounded-2xl border-2 border-night-800 px-4 py-20 sm:p-20">
<p className="text-base font-bold text-night-500 sm:text-2xl">
Treasure is building the decentralized game console bring games
and IP born out of web3 into the mainstream.
Treasure is building the decentralized game console to bring
games and IP born out of web3 into the mainstream.
</p>
<ol className="mt-24 list-none space-y-20 text-sm text-gray-500 [counter-reset:line] sm:mt-10 sm:ml-12 sm:space-y-4 sm:text-lg">
<li className="relative text-center before:absolute before:-top-14 before:left-0 before:right-0 before:mx-auto before:inline-flex before:h-8 before:w-8 before:items-center before:justify-center before:rounded-full before:bg-ruby-900 before:p-2.5 before:tabular-nums before:text-honey-300 before:[counter-increment:line] before:![content:counter(line)] sm:text-left before:sm:top-1.5 before:sm:-left-16 before:sm:mx-0 before:sm:h-10 before:sm:w-10">
Expand Down

0 comments on commit 80c520b

Please sign in to comment.