Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
eledra89 committed Feb 9, 2024
1 parent 7c47eb6 commit 7158803
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 10 deletions.
13 changes: 8 additions & 5 deletions src/app/build/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import img_circel_gradient_logo from "@/assets/images/img_circel_gradient_logo.p
import img_circle_pyxis from '@/assets/images/img_circle_pyxis.svg';
import img_halotrade from '@/assets/images/img_halotrade.svg';
import img_horoscope from '@/assets/images/img_horoscope.svg';
import img_seekhype from '@/assets/images/img_seekhype.svg';
import img_mstr from '@/assets/images/img_mstr.webp';

import Image from "next/image";
import GradientButton from "../../components/Button/GradientButton";
import Card from "../../sections/statistics/components/Card";
Expand Down Expand Up @@ -43,16 +46,16 @@ const ecosystemData = [{
description: "Use fully customizable multi-sig infrastructure to protect your assets."
},
{
img: img_circle_pyxis,
img: img_seekhype,
title: "Seekhype",
link: AURA_ECOSYSTEM.PYXIS_SAFE,
link: AURA_ECOSYSTEM.SEEKHYPE,
description: "Enhance your seamless NFT experience while enjoying utility with premier Web2 brands"
},
{
img: img_circle_pyxis,
img: img_mstr,
title: "Monsterra",
link: AURA_ECOSYSTEM.PYXIS_SAFE,
description: "Use fully customizable multi-sig infrastructure to protect your assets."
link: AURA_ECOSYSTEM.MSTR,
description: "Multi-chain game inspired by the Axie Infinity game's pet world and the gameplay in Clash of Clan or Boom Beach of Supercell. "
}
]

Expand Down
Binary file added src/assets/images/img_mstr.webp
Binary file not shown.
12 changes: 12 additions & 0 deletions src/assets/images/img_seekhype.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/common/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@ export const enum AURA_ECOSYSTEM {
HOROSCOPE = 'https://horoscope.aura.network/',
AURA_SCAN = 'https://aurascan.io/',
PYXIS_SAFE = 'https://pyxis.aura.network/',
AHA_MOVE = 'https://insight.aura.network/aura-network-and-ahamove-have-officially-signed-to-develop-ahafast-ride-2-earn/'
AHA_MOVE = 'https://insight.aura.network/aura-network-and-ahamove-have-officially-signed-to-develop-ahafast-ride-2-earn/',
SEEKHYPE = 'https://beta.seekhype.io/',
MSTR = 'https://monsterra.io/'
}
2 changes: 1 addition & 1 deletion src/components/Button/GradientButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from "react";

function GradientButton({ children, className, href }: { children: React.ReactNode, className?: string, href?: string }) {
return (
<Link href={href ?? "/"} target="_blank" className={`w-fit rounded-full bg-brand-gradient hover:text-[#FD9552] hover:bg-dark-charcoal hover:bg-none hover:border hover:border-[#262320] py-4 px-8 font-semibold text-black text-lg leading-normal h-[54px] flex items-center ${className}`}>
<Link href={href ?? "/"} className={`w-fit rounded-full bg-brand-gradient hover:text-[#FD9552] hover:bg-dark-charcoal hover:bg-none hover:border hover:border-[#262320] py-4 px-8 font-semibold text-black text-lg leading-normal h-[54px] flex items-center ${className}`}>
{children}
</Link>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";
function Button({ children }: { children: React.ReactNode }) {
return (
<div className="flex items-center justify-center">
<Link href="/" className="w-full rounded-full hover:bg-gradient-to-br from-[#FF697B] via-[#FC8E4F] to-[#FFD569] p-[1px] h-[56px] flex items-center">
<Link target="_blank" href="https://insight.aura.network/full-tutorial-how-to-buy-aura/" className="w-full rounded-full hover:bg-gradient-to-br from-[#FF697B] via-[#FC8E4F] to-[#FFD569] p-[1px] h-[56px] flex items-center">
<div className="w-full rounded-full bg-light-charcoal hover:text-[#FD9552] py-4 px-8 font-semibold text-lg h-[54px] flex items-center justify-center">
{children}
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function Header() {
<Item subItems={communityMenu}>Community</Item>
</div>
<div className="hidden lg:contents">
<Button>Buy AURA</Button>
<Button>Get AURA</Button>
</div>
</div>
<div className="hidden w-full nav-menu lg:hidden">
Expand All @@ -96,7 +96,7 @@ function Header() {
<Item subItems={communityMenu}>Community</Item>
</div>
<div className="p-6">
<Button>Buy AURA</Button>
<Button>Get AURA</Button>
</div>
</div>
</div>
Expand Down

0 comments on commit 7158803

Please sign in to comment.