diff --git a/src/app/build/page.tsx b/src/app/build/page.tsx index 899c5c0..07b8c77 100644 --- a/src/app/build/page.tsx +++ b/src/app/build/page.tsx @@ -2,14 +2,14 @@ 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 img_seekhype from '@/assets/images/img_seekhype.svg'; +import { AURA_ECOSYSTEM } from "@/common"; import Image from "next/image"; +import Link from "next/link"; import GradientButton from "../../components/Button/GradientButton"; import Card from "../../sections/statistics/components/Card"; -import { AURA_ECOSYSTEM } from "@/common"; -import Link from "next/link"; const intro = [{ value: "Integrate", @@ -23,6 +23,7 @@ const intro = [{ const ecosystemData = [{ img: img_halotrade, + isCircle: true, title: "HaloTrade", link: AURA_ECOSYSTEM.HALO_TRADE, description: "Deploy tokens and enable Aura users to swap and earn." @@ -30,32 +31,37 @@ const ecosystemData = [{ { img: img_horoscope, title: "Horoscope", + isCircle: true, link: AURA_ECOSYSTEM.HOROSCOPE, - description: "Start indexing tokens and data on Cosmos with Horoscope" + description: "Start indexing tokens and data on Cosmos with Horoscope." }, { img: img_circel_gradient_logo, title: "AuraScan", + isCircle: true, link: AURA_ECOSYSTEM.AURA_SCAN, - description: "Begin tracking wallets, active users, and other stats through AuraScan" + description: "Begin tracking wallets, active users, and other stats through AuraScan." }, { img: img_circle_pyxis, title: "Pyxis", + isCircle: true, link: AURA_ECOSYSTEM.PYXIS_SAFE, description: "Use fully customizable multi-sig infrastructure to protect your assets." }, { img: img_seekhype, - title: "Seekhype", + title: "SeekHYPE", + isCircle: false, link: AURA_ECOSYSTEM.SEEKHYPE, - description: "Enhance your seamless NFT experience while enjoying utility with premier Web2 brands" + description: "Enhance your seamless NFT experience while enjoying utility with premier Web2 brands." }, { img: img_mstr, title: "Monsterra", + isCircle: true, 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. " + 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." } ] @@ -89,13 +95,13 @@ function Build() {
{ecosystemData.map((item, i) => ( - - {item.title} +
+ {item.title}
- {item.title} + {item.title} {item.description}
- +
))}