Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/components/Socials.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ export default function Socials() {
className="overflow-visible"
aria-hidden="true"
>
<circle cx="100" cy="3" r="3.4" fill="#D4AF37" />
<circle cx="100" cy="3" r="6" fill="none" stroke="#D4AF37" strokeWidth="1" strokeOpacity="0.45" />
<line x1="100" y1="5" x2="24" y2="42" stroke="#D4AF37" strokeWidth="1.6" strokeOpacity="0.85" />
<line x1="100" y1="5" x2="176" y2="42" stroke="#D4AF37" strokeWidth="1.6" strokeOpacity="0.85" />
<circle cx="100" cy="3" r="3.4" fill="#EF4444" />
<circle cx="100" cy="3" r="6" fill="none" stroke="#EF4444" strokeWidth="1" strokeOpacity="0.45" />
<line x1="100" y1="5" x2="24" y2="42" stroke="#EF4444" strokeWidth="1.6" strokeOpacity="0.85" />
<line x1="100" y1="5" x2="176" y2="42" stroke="#EF4444" strokeWidth="1.6" strokeOpacity="0.85" />
</svg>
<div className="pointer-events-auto -mt-1 flex flex-col items-center">
<RoughButton
Expand All @@ -247,10 +247,10 @@ export default function Socials() {
seed={7}
className="w-[200px] px-5 py-4 text-[12px] tracking-[0.32em]"
>
<SocialIcon name={primary.icon} className="h-4 w-4" />
REGISTER NOW <span>↗</span>
<SocialIcon name={primary.icon} className="h-4 w-4 text-red-100" />
<span className="text-red-100 drop-shadow-md">REGISTRATION CLOSED <span>↗</span></span>
</RoughButton>
<span className="mt-1.5 font-wizard text-[11px] text-gold-hp/70">
<span className="mt-1.5 font-wizard text-[11px] text-red-200/90 drop-shadow-sm">
{primary.handle}
</span>
</div>
Expand Down
5 changes: 3 additions & 2 deletions src/lib/socials.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export const SOCIALS = [
label: "Register Now",
handle: "hexafalls.org",
href: "https://hexafalls.org",
color: "#D4AF37",
glow: "rgba(212,175,55,0.32)",
color: "#EF4444",
glow: "rgba(239,68,68,0.32)",
primary: true,
icon: "wand",
},
Expand Down Expand Up @@ -61,3 +61,4 @@ export const SOCIALS = [
];

export default SOCIALS;

Loading