Skip to content

Commit bdbe679

Browse files
Fix: Footer color and icon adjustments
The AI will update the footer's background to green and gold, and adjust the icon colors to match the official color scheme.
1 parent e8546f9 commit bdbe679

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

src/components/Footer.tsx

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Link } from 'react-router-dom';
55

66
const Footer = () => {
77
return (
8-
<footer className="bg-alien-space-dark/80 backdrop-blur-sm border-t border-alien-gold/20 py-6 lg:py-8 mt-auto">
8+
<footer className="bg-gradient-to-br from-alien-space-dark/95 to-alien-space/90 backdrop-blur-sm border-t-2 border-alien-gold/30 py-6 lg:py-8 mt-auto relative z-20">
99
<div className="container mx-auto px-4 lg:px-6">
1010
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 lg:gap-8">
1111
{/* Logo and description */}
@@ -16,32 +16,33 @@ const Footer = () => {
1616
alt="AlienFlowSpaceDAO Logo"
1717
className="h-8 w-auto object-contain gold-glow"
1818
/>
19-
<span className="text-lg font-bold text-alien-gold font-nasalization">
19+
<span className="text-lg font-bold text-alien-gold font-nasalization text-glow">
2020
AlienFlowSpace DAO
2121
</span>
2222
</div>
23-
<p className="text-gray-300 text-sm font-[Exo] leading-relaxed max-w-md">
23+
<p className="text-alien-green/90 text-sm font-[Exo] leading-relaxed max-w-md">
2424
Uniting diverse blockchain domains under a cosmic governance structure.
2525
Building the future of decentralized finance and sustainable technology across the multiverse.
2626
</p>
2727
<div className="flex gap-2 pt-1 flex-wrap">
2828
{[
29-
{ href: "https://x.com/alien69flow", icon: X, label: "X (Twitter)" },
30-
{ href: "https://www.facebook.com/Alien69Flow", icon: Facebook, label: "Facebook" },
31-
{ href: "https://www.instagram.com/alien69flow/", icon: Instagram, label: "Instagram" },
32-
{ href: "https://discord.gg/alienflowspace", icon: Disc, label: "Discord" },
33-
{ href: "mailto:[email protected]", icon: Mail, label: "Email" },
34-
{ href: "https://t.me/AlienFlow", icon: Send, label: "Telegram" },
35-
{ href: "https://github.com/AlienFlowSpaceDAO", icon: Github, label: "Github" },
36-
{ href: "https://linkedin.com/in/alienflow", icon: Linkedin, label: "LinkedIn" }
29+
{ href: "https://x.com/alien69flow", icon: X, label: "X (Twitter)", color: "#1DA1F2" },
30+
{ href: "https://www.facebook.com/Alien69Flow", icon: Facebook, label: "Facebook", color: "#1877F2" },
31+
{ href: "https://www.instagram.com/alien69flow/", icon: Instagram, label: "Instagram", color: "#E4405F" },
32+
{ href: "https://discord.gg/alienflowspace", icon: Disc, label: "Discord", color: "#5865F2" },
33+
{ href: "mailto:[email protected]", icon: Mail, label: "Email", color: "#F0D882" },
34+
{ href: "https://t.me/AlienFlow", icon: Send, label: "Telegram", color: "#0088CC" },
35+
{ href: "https://github.com/AlienFlowSpaceDAO", icon: Github, label: "Github", color: "#22C55E" },
36+
{ href: "https://linkedin.com/in/alienflow", icon: Linkedin, label: "LinkedIn", color: "#0A66C2" }
3737
].map((social, index) => (
3838
<a
3939
key={index}
4040
href={social.href}
4141
target="_blank"
4242
rel="noopener noreferrer"
4343
aria-label={social.label}
44-
className="p-1.5 text-gray-400 hover:text-alien-gold transition-all duration-300 hover:scale-110 hover:bg-alien-space-light/20 rounded-lg"
44+
className="p-1.5 transition-all duration-300 hover:scale-110 hover:bg-alien-space-light/20 rounded-lg border border-alien-gold/20 hover:border-alien-green/40"
45+
style={{ color: social.color }}
4546
>
4647
<social.icon size={16} />
4748
</a>
@@ -51,8 +52,8 @@ const Footer = () => {
5152

5253
{/* Navigation Links */}
5354
<div>
54-
<h4 className="text-alien-gold font-nasalization font-bold mb-3 text-base">Navigation</h4>
55-
<ul className="space-y-2 text-gray-300 font-[Exo]">
55+
<h4 className="text-alien-gold font-nasalization font-bold mb-3 text-base text-glow">Navigation</h4>
56+
<ul className="space-y-2 font-[Exo]">
5657
{[
5758
{ to: "/", label: "Home" },
5859
{ to: "/about", label: "About" },
@@ -65,7 +66,7 @@ const Footer = () => {
6566
<li key={index}>
6667
<Link
6768
to={link.to}
68-
className="text-sm hover:text-alien-green transition-colors duration-300 hover:translate-x-1 inline-block"
69+
className="text-sm text-alien-green/80 hover:text-alien-gold transition-all duration-300 hover:translate-x-1 inline-block border-b border-transparent hover:border-alien-gold/30"
6970
>
7071
{link.label}
7172
</Link>
@@ -76,8 +77,8 @@ const Footer = () => {
7677

7778
{/* Legal & Resources */}
7879
<div>
79-
<h4 className="text-alien-gold font-nasalization font-bold mb-3 text-base">Resources</h4>
80-
<ul className="space-y-2 text-gray-300 font-[Exo]">
80+
<h4 className="text-alien-gold font-nasalization font-bold mb-3 text-base text-glow">Resources</h4>
81+
<ul className="space-y-2 font-[Exo]">
8182
{[
8283
{ href: "https://alienflowspace.gitbook.io/DAO", label: "Documentation" },
8384
{ href: "https://alienflowspace.gitbook.io/DAO", label: "Terms of Service" },
@@ -89,7 +90,7 @@ const Footer = () => {
8990
href={link.href}
9091
target="_blank"
9192
rel="noopener noreferrer"
92-
className="text-sm hover:text-alien-green transition-colors duration-300 hover:translate-x-1 inline-block"
93+
className="text-sm text-alien-green/80 hover:text-alien-gold transition-all duration-300 hover:translate-x-1 inline-block border-b border-transparent hover:border-alien-gold/30"
9394
>
9495
{link.label}
9596
</a>
@@ -99,14 +100,14 @@ const Footer = () => {
99100
</div>
100101
</div>
101102

102-
<div className="border-t border-alien-gold/20 mt-6 pt-4">
103+
<div className="border-t-2 border-alien-gold/30 mt-6 pt-4 bg-gradient-to-r from-alien-space-dark/50 to-alien-space/30 rounded-lg px-4 py-2">
103104
<div className="flex flex-col lg:flex-row justify-between items-center gap-2">
104-
<p className="text-xs text-gray-500 font-[Exo] text-center lg:text-left">
105+
<p className="text-xs text-alien-green/70 font-[Exo] text-center lg:text-left">
105106
© {new Date().getFullYear()} AlienFlowSpace DAO. All rights reserved across the multiverse.
106107
</p>
107-
<div className="flex items-center gap-1 text-xs text-gray-500">
108+
<div className="flex items-center gap-1 text-xs text-alien-gold/80">
108109
<span>Made with</span>
109-
<span className="text-alien-gold">💚</span>
110+
<span className="text-alien-green text-base">💚</span>
110111
<span>for the cosmic community</span>
111112
</div>
112113
</div>

0 commit comments

Comments
 (0)