Skip to content

Commit

Permalink
Docs CTA, remove custom addr cta for now (#85)
Browse files Browse the repository at this point in the history
* Fix a few things

* new tab
  • Loading branch information
manolisliolios authored Dec 11, 2024
1 parent 9d3d4f4 commit 738f98e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions app/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ const Menu = [
name: "Terms of Use",
href: "/terms",
},
{
name: "Documentation",
href: "https://docs.suins.io/move-registry",
},
];
const Social = [
{
Expand All @@ -39,7 +43,11 @@ export default function Footer() {
<div className="container items-center gap-Small py-Regular md:flex md:justify-between">
<div className="items-center gap-Large md:flex">
{Menu.map(({ name, href }) => (
<Link key={name} href={href}>
<Link
key={name}
href={href}
target={href.startsWith("http") ? "_blank" : undefined}
>
{
<Text
variant="small/regular"
Expand All @@ -53,7 +61,7 @@ export default function Footer() {
</Link>
))}
</div>
<div className="flex flex-wrap justify-end gap-Small items-center max-md:pt-Large">
<div className="flex flex-wrap items-center justify-end gap-Small max-md:pt-Large">
<Text
variant="xsmall/regular"
mono
Expand Down
4 changes: 2 additions & 2 deletions app/src/data/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ export const Content = {
},
wallet: {
icon: "👋🏽",
title: "Connect your wallet or enter a custom address",
title: "Connect your wallet",
description:
"To get started, connect your wallet or use a custom address.",
"To get started, connect your wallet.",
button: "Read our FAQ",
},
suinsNames: {
Expand Down

0 comments on commit 738f98e

Please sign in to comment.