11---
22import { Image } from " astro:assets" ;
33import dojobayLogo from " ../../assets/homepage/dojobay.png" ;
4+ import dojobayOrgLogo from " ../../assets/homepage/dojobay-org.png" ;
45import " ../../styles/global.css" ;
56import Button from " ./Button.astro" ;
67---
@@ -20,34 +21,54 @@ import Button from "./Button.astro";
2021 Unable to run your own Samourai Dojo?
2122 </h3 >
2223 <p class =" mt-4 max-w-2xl text-base leading-7 text-zinc-300" >
23- DojoBay exists to provide access for users who are not able to operate their own Samourai Dojo, while still
24+ DojoBays exists to provide access for users who are not able to operate their own Samourai Dojo, while still
2425 giving them a path into the ecosystem.
2526 </p >
2627
27- <div class =" mt-8" >
28+ <div class =" mt-8 flex flex-wrap gap-3 " >
2829 <Button
2930 as =" a"
30- href =" https://dojobay.pw /"
31+ href =" https://dojobay.org /"
3132 target =" _blank"
3233 rel =" noreferrer"
3334 type =" primary"
3435 >
35- Visit DojoBay
36+ Visit dojobay.org
37+ </Button >
38+ <Button
39+ as =" a"
40+ href =" https://dojobay.pw/"
41+ target =" _blank"
42+ rel =" noreferrer"
43+ type =" secondary"
44+ >
45+ Visit dojobay.pw
3646 </Button >
3747 </div >
3848 </div >
3949
4050 <div class =" relative mx-auto w-full max-w-[320px] lg:max-w-[360px]" >
4151 <div aria-hidden =" true" class =" absolute inset-6 rounded-full bg-[#ed3b26]/20 blur-3xl" ></div >
4252 <div class =" relative overflow-hidden rounded-[2rem] border border-white/10 bg-black/30 p-4 shadow-[0_24px_60px_rgba(0,0,0,0.45)]" >
43- <div class =" rounded-[1.5rem] border border-white/10 bg-gradient-to-b from-white/10 to-white/[0.02] p-4" >
44- <Image
45- src ={ dojobayLogo }
46- alt =" DojoBay logo"
47- widths ={ [320 , 480 ]}
48- sizes =" (min-width: 1024px) 360px, 70vw"
49- class =" mx-auto aspect-square h-auto w-full rounded-full"
50- />
53+ <div class =" grid grid-cols-2 gap-3" >
54+ <div class =" rounded-[1.5rem] border border-white/10 bg-gradient-to-b from-white/10 to-white/[0.02] p-3" >
55+ <Image
56+ src ={ dojobayOrgLogo }
57+ alt =" dojobay.org logo"
58+ widths ={ [160 , 320 ]}
59+ sizes =" (min-width: 1024px) 170px, 34vw"
60+ class =" mx-auto aspect-square h-auto w-full rounded-full"
61+ />
62+ </div >
63+ <div class =" rounded-[1.5rem] border border-white/10 bg-gradient-to-b from-white/10 to-white/[0.02] p-3" >
64+ <Image
65+ src ={ dojobayLogo }
66+ alt =" dojobay.pw logo"
67+ widths ={ [160 , 320 ]}
68+ sizes =" (min-width: 1024px) 170px, 34vw"
69+ class =" mx-auto aspect-square h-auto w-full rounded-full"
70+ />
71+ </div >
5172 </div >
5273 </div >
5374
0 commit comments