Skip to content

Commit 65499a7

Browse files
authored
Merge pull request #9 from SpaceCorps/8-fix-footer
fix footer
2 parents 555f0ee + 199acb2 commit 65499a7

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/components/Footer/Footer.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,28 @@ const Footer: React.FC<FooterProps> = ({}) => {
2222
];
2323

2424
return (
25-
<footer className="bg-card border-t border-border">
26-
<div className="container mx-auto px-4 sm:px-6 lg:px-8 py-12">
27-
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
25+
<footer className="bg-black border-t border-gray-800">
26+
<div className="w-full py-12">
27+
<div className="flex flex-col md:flex-row items-center justify-between gap-8 md:gap-16 px-8 max-w-7xl mx-auto">
2828
{/* Company Info */}
29-
<div>
29+
<div className="flex-shrink-0 text-center md:text-left">
3030
<h3 className="text-lg font-semibold text-foreground mb-4">
3131
SpaceCorps Technology
3232
</h3>
33-
<p className="text-muted-foreground mb-4 leading-relaxed">
33+
<p className="text-muted-foreground mb-4 leading-relaxed max-w-sm">
3434
Building the future of business software with AI-powered
3535
development. Delivering enterprise-grade applications in days, not
3636
months.
3737
</p>
38-
<div className="flex space-x-4">
39-
<Mail className="w-5 h-5 text-muted-foreground hover:text-foreground cursor-pointer transition-colors" />
40-
<Github className="w-5 h-5 text-muted-foreground hover:text-foreground cursor-pointer transition-colors" />
41-
<Globe className="w-5 h-5 text-muted-foreground hover:text-foreground cursor-pointer transition-colors" />
38+
<div className="flex space-x-4 justify-center md:justify-start">
39+
<Mail className="w-5 h-5 text-white hover:text-gray-300 cursor-pointer transition-colors" />
40+
<Github className="w-5 h-5 text-white hover:text-gray-300 cursor-pointer transition-colors" />
41+
<Globe className="w-5 h-5 text-white hover:text-gray-300 cursor-pointer transition-colors" />
4242
</div>
4343
</div>
4444

4545
{/* Services */}
46-
<div>
46+
<div className="flex-shrink-0 text-center md:text-left">
4747
<h3 className="text-lg font-semibold text-foreground mb-4">
4848
Services
4949
</h3>
@@ -62,7 +62,7 @@ const Footer: React.FC<FooterProps> = ({}) => {
6262
</div>
6363

6464
{/* Contact */}
65-
<div>
65+
<div className="flex-shrink-0 text-center md:text-left">
6666
<h3 className="text-lg font-semibold text-foreground mb-4">
6767
Contact
6868
</h3>
@@ -80,7 +80,7 @@ const Footer: React.FC<FooterProps> = ({}) => {
8080
</div>
8181

8282
{/* Bottom Bar */}
83-
<div className="border-t border-border mt-8 pt-8 text-center">
83+
<div className="mt-8 pt-8 text-center">
8484
<p className="text-muted-foreground text-sm">
8585
© 2025 SpaceCorps Technology OÜ. All rights reserved.
8686
</p>

0 commit comments

Comments
 (0)