Skip to content

Commit 927299d

Browse files
authored
Kusari changes (#59)
* Kusari changes * update metadata * Push changes * Fixes * Rename back * Try new embed image * Fixes
1 parent 6ce1655 commit 927299d

File tree

14 files changed

+110
-71
lines changed

14 files changed

+110
-71
lines changed

public/og-image.png

41.4 KB
Loading

src/app/globals.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ export const ADDRESS = "0xf75140376d246d8b1e5b8a48e3f00772468b3c0c";
1010

1111
// Links
1212
export const TWITTER_LINK = "https://twitter.com/uwucrewnft";
13+
export const KUSARI_TWITTER_LINK = "https://twitter.com/bykusari";
1314
export const DISCORD_LINK = "https://discord.gg/cKWpT7HGam";
1415
export const INSTAGRAM_LINK = "https://www.instagram.com/uwucrew.art/";
16+
export const KUSARI_INSTAGRAM_LINK = "https://www.instagram.com/bykusari/";
1517
export const MEDIUM_LINK = "https://mirror.xyz/uwucrew.eth";
1618
export const ETHERSCAN_LINK = `https://etherscan.io/address/${ADDRESS}`;
1719
export const OPENSEA_LINK = "https://opensea.io/collection/uwucrew";

src/assets/kusariPrimaryBeige.webp

29.6 KB
Loading

src/assets/kusariPrimaryGreen.webp

29.6 KB
Loading

src/assets/kusariPrimaryWhite.webp

29.6 KB
Loading

src/assets/socials/farcaster.svg

Lines changed: 11 additions & 0 deletions
Loading

src/assets/socials/globe.svg

Lines changed: 6 additions & 0 deletions
Loading

src/components/Community.css

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.community {
22
width: 100%;
33
height: 100dvh;
4-
background: #f4f5f6;
4+
background: #5D9875;
55
position: relative;
66
overflow: hidden;
77
display: flex;
@@ -23,7 +23,7 @@
2323
height: 100dvh;
2424
top: 70%;
2525
left: -12.5%;
26-
background: #73d7e8;
26+
background: #A5BFA5;
2727
border-radius: 50%;
2828
filter: blur(200px);
2929
}
@@ -34,7 +34,7 @@
3434
height: 100dvh;
3535
top: 70%;
3636
right: -12.5%;
37-
background: #73d7e8;
37+
background: #A5BFA5;
3838
border-radius: 50%;
3939
filter: blur(200px);
4040
}
@@ -45,11 +45,11 @@
4545
height: 100dvh;
4646
top: -50%;
4747
left: 0;
48-
background: #73d7e8;
48+
background: #5D9875;
4949
border-radius: 50%;
5050
background: radial-gradient(
5151
50% 50% at 50% 50%,
52-
#73d7e8 0%,
52+
#A5BFA5 0%,
5353
rgba(115, 215, 232, 0) 100%
5454
);
5555
}
@@ -76,7 +76,7 @@
7676
}
7777

7878
.community-content-image {
79-
width: 25rem;
79+
width: 23rem;
8080
margin-bottom: 1rem;
8181
}
8282

@@ -90,9 +90,10 @@
9090
font-size: 8.8rem;
9191
font-weight: 800;
9292
margin-bottom: 3.2rem;
93-
width: 60rem;
93+
width: 80rem;
9494
text-align: center;
9595
line-height: 100%;
96+
color: #ffffff;
9697
}
9798

9899
@media (max-width: 900px) {
@@ -149,6 +150,10 @@
149150
margin-left: 1.2rem;
150151
}
151152

153+
.community-footer-social-image.white-icon {
154+
filter: brightness(0) invert(1);
155+
}
156+
152157
@keyframes grow {
153158
from {
154159
transform: scale(0);
@@ -161,8 +166,8 @@
161166
.community-desktop-uwu-container {
162167
position: absolute;
163168
border-radius: 50%;
164-
box-shadow: 0px 8px 24px 0px rgba(140, 213, 230, 0.5),
165-
0px 12px 72px 0px rgba(140, 213, 230, 0.8);
169+
box-shadow: 0px 8px 24px 0px rgba(165, 191, 165, 0.5),
170+
0px 12px 72px 0px rgba(165, 191, 165, 0.8);
166171
transform: scale(0);
167172
transition: all 0.5s ease-in-out;
168173
overflow: hidden;
@@ -178,8 +183,8 @@
178183
display: none;
179184
position: absolute;
180185
border-radius: 50%;
181-
box-shadow: 0px 8px 24px 0px rgba(140, 213, 230, 0.5),
182-
0px 12px 72px 0px rgba(140, 213, 230, 0.8);
186+
box-shadow: 0px 8px 24px 0px rgba(165, 191, 165, 0.5),
187+
0px 12px 72px 0px rgba(165, 191, 165, 0.8);
183188
transform: scale(0);
184189
transition: all 0.5s ease-in-out;
185190
overflow: hidden;

src/components/Community.tsx

Lines changed: 27 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
import "./Community.css";
22
import Section from "./Section";
33

4-
import logo from "../assets/bunnyPrimary.webp";
4+
import logo from "../assets/kusariPrimaryWhite.webp";
55
import Button from "./Button";
66
import {
77
DISCORD_LINK,
8-
ETHERSCAN_LINK,
9-
INSTAGRAM_LINK,
10-
MEDIUM_LINK,
11-
OPENSEA_LINK,
12-
TWITTER_LINK,
8+
KUSARI_INSTAGRAM_LINK,
9+
KUSARI_TWITTER_LINK,
1310
} from "../app/globals";
1411

15-
import discord from "../assets/socials/footer/discord.svg";
16-
import etherscan from "../assets/socials/footer/etherscan.svg";
1712
import instagram from "../assets/socials/footer/instagram.svg";
18-
import medium from "../assets/socials/footer/medium.svg";
19-
import opensea from "../assets/socials/footer/opensea.svg";
2013
import twitter from "../assets/socials/footer/twitter.svg";
14+
import globe from "../assets/socials/globe.svg";
2115

2216
import whiteDiscord from "../assets/socials/discord.svg";
17+
import farcaster from "../assets/socials/farcaster.svg";
2318

2419
import { useEffect, useState } from "react";
2520

@@ -48,7 +43,6 @@ const imageOptions = [
4843
"JG.webp",
4944
"Nate-uwu.webp",
5045
"Suhate.webp",
51-
"Neetori.jpeg",
5246
"Tuwu.webp",
5347
"Cloudy.webp",
5448
"Vanaric.webp",
@@ -146,34 +140,24 @@ interface SocialType {
146140

147141
const socials: SocialType[] = [
148142
{
149-
name: "Discord",
150-
link: DISCORD_LINK,
151-
icon: discord,
143+
name: "Kusari Website",
144+
link: "https://kusari.org",
145+
icon: globe,
152146
},
153147
{
154148
name: "Twitter",
155-
link: TWITTER_LINK,
149+
link: KUSARI_TWITTER_LINK,
156150
icon: twitter,
157151
},
158152
{
159-
name: "Instagram",
160-
link: INSTAGRAM_LINK,
161-
icon: instagram,
162-
},
163-
{
164-
name: "Etherscan",
165-
link: ETHERSCAN_LINK,
166-
icon: etherscan,
153+
name: "Farcaster",
154+
link: "https://farcaster.xyz/bykusari",
155+
icon: farcaster,
167156
},
168157
{
169-
name: "Medium",
170-
link: MEDIUM_LINK,
171-
icon: medium,
172-
},
173-
{
174-
name: "OpenSea",
175-
link: OPENSEA_LINK,
176-
icon: opensea,
158+
name: "Instagram",
159+
link: KUSARI_INSTAGRAM_LINK,
160+
icon: instagram,
177161
},
178162
];
179163

@@ -308,22 +292,18 @@ const Community = () => {
308292
<div className="community-content">
309293
<img
310294
src={logo}
311-
alt="uwucrew icon"
295+
alt="kusari icon"
312296
className="community-content-image"
313297
/>
314298
<div className="community-content-header">
315-
Be part of the community
299+
Discover the Kusari Community
316300
</div>
317301
<Button
318302
outLink={DISCORD_LINK}
319303
label="Join our Discord!"
320304
icon={whiteDiscord}
321305
/>
322-
</div>
323-
324-
{/* Footer */}
325-
<div className="community-footer">
326-
<div className="community-footer-socials">
306+
<div style={{ marginTop: '2.2rem' }} className="community-footer-socials">
327307
{socials.map((social) => (
328308
<a
329309
key={social.name}
@@ -335,12 +315,20 @@ const Community = () => {
335315
<img
336316
src={social.icon}
337317
alt={social.name}
338-
className="community-footer-social-image"
318+
className={
319+
social.name === "Kusari Website"
320+
? "community-footer-social-image white-icon globe-icon"
321+
: "community-footer-social-image white-icon"
322+
}
323+
style={social.name === "Kusari Website" ? { width: '2.2rem', height: '2.2rem' } : {}}
339324
/>
340325
</a>
341326
))}
342327
</div>
343328
</div>
329+
330+
{/* Footer */}
331+
<div className="community-footer" />
344332
</div>
345333
</Section>
346334
);

src/components/HeroContent.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,34 @@
8888
transition: transform 0.3s ease-in-out;
8989
}
9090

91+
/* Desktop-specific styling for larger social elements */
92+
@media (min-width: 901px) {
93+
.socials-container .socials-text {
94+
font-size: 2.4rem;
95+
margin-right: 1rem;
96+
}
97+
98+
.socials-container .social {
99+
height: 2.4rem;
100+
width: 2.6rem;
101+
margin: 0.8rem;
102+
}
103+
}
104+
105+
/* Mobile-specific styling for larger social elements */
106+
@media (max-width: 900px) {
107+
.socials-container-mobile .socials-text {
108+
font-size: 2.6rem;
109+
margin-right: 1rem;
110+
}
111+
112+
.socials-container-mobile .social {
113+
height: 2.8rem;
114+
width: 3rem;
115+
margin: 0.8rem;
116+
}
117+
}
118+
91119
.social:hover {
92120
transform: scale(1.15);
93121
}

0 commit comments

Comments
 (0)