Skip to content

Commit

Permalink
complete tasks 1-8 in task tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
pipercucu committed Oct 16, 2023
1 parent 47739a5 commit 730b4a7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/app/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export const TWITTER_LINK = "https://twitter.com/uwucrewnft";
export const DISCORD_LINK = "https://discord.gg/uwucrew";
export const INSTAGRAM_LINK = "https://www.instagram.com/uwucrew.art/";
export const MEDIUM_LINK = "https://medium.com/@uwulabs";
export const ETHERSCAN_LINK = "https://etherscan.io/address/0x0";
export const OPENSEA_LINK = `https://etherscan.io/address/${ADDRESS}`;
export const ETHERSCAN_LINK = `https://etherscan.io/address/${ADDRESS}`;
export const OPENSEA_LINK = "https://opensea.io/collection/uwucrew";
export const MIRROR_LINK = "https://mirror.xyz/uwucrew.eth/";

// Socials
Expand Down
Binary file added src/assets/team/derivatives/laur.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Community.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
font-size: 8.8rem;
font-weight: 800;
margin-bottom: 3.2rem;
width: 45rem;
width: 60rem;
text-align: center;
line-height: 100%;

Expand Down
4 changes: 3 additions & 1 deletion src/components/Community.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,9 @@ const Community = () => {
alt="uwucrew icon"
className="community-content-image"
/>
<div className="community-content-header">Join the community</div>
<div className="community-content-header">
Be part of the community
</div>
<Button
link={DISCORD_LINK}
label="Join our Discord"
Expand Down
24 changes: 11 additions & 13 deletions src/components/Team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import danny from "../assets/team/danny.png";
import nines from "../assets/team/nines.png";
import jules from "../assets/team/jules.png";

import laurDeriv from "../assets/team/derivatives/danny.png";
import laurDeriv from "../assets/team/derivatives/laur.png";
import kiwiDeriv from "../assets/team/derivatives/kiwi.jpg";
import morelloDeriv from "../assets/team/derivatives/morello.png";
import chaseDeriv from "../assets/team/derivatives/danny.png";
// import chaseDeriv from "../assets/team/derivatives/danny.png";
import omarDeriv from "../assets/team/derivatives/omar.png";
import dannyDeriv from "../assets/team/derivatives/danny.png";
import ninesDeriv from "../assets/team/derivatives/danny.png";
// import ninesDeriv from "../assets/team/derivatives/danny.png";
import julesDeriv from "../assets/team/derivatives/jules.png";

import twitter from "../assets/socials/team/twitter.svg";
Expand All @@ -26,7 +26,7 @@ interface TeamMemberType {
name: string;
image: string;
role: string;
deriv: string;
deriv?: string;
twitter?: string;
github?: string;
}
Expand All @@ -44,7 +44,6 @@ const members: TeamMemberType[] = [
role: "Co-Founder & Dev",
image: kiwi,
twitter: "https://twitter.com/0xKiwi_",
github: "https://github.com/0xKiwi",
deriv: kiwiDeriv,
},
{
Expand Down Expand Up @@ -80,15 +79,12 @@ const members: TeamMemberType[] = [
role: "Front End Dev",
image: chase,
twitter: "https://twitter.com/chase_manning_",
github: "https://github.com/chase-manning",
deriv: chaseDeriv,
},
{
name: "Nines",
role: "2D & 3D Designer",
image: nines,
twitter: "https://twitter.com/nine__s",
deriv: ninesDeriv,
},
];

Expand All @@ -107,11 +103,13 @@ const Team = () => {
alt={member.name}
className="team-member-image"
/>
<img
src={member.deriv}
alt={member.name}
className="team-member-image-overlay"
/>
{member.deriv && (
<img
src={member.deriv}
alt={member.name}
className="team-member-image-overlay"
/>
)}
</div>
<h3 className="team-member-name">{member.name}</h3>
<h4 className="team-member-title">{member.role}</h4>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Why.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Why = () => {
</div>
</div>
<div className="why-content">
<h1 className="why-header">Why uwucrew</h1>
<h1 className="why-header">Why uwucrew?</h1>
<img className="why-image" src={uwu1} alt="uwu" />
<h2 className="why-sub-header">Discover a world of creativity</h2>
<p className="why-text">
Expand Down

0 comments on commit 730b4a7

Please sign in to comment.