mirror of
https://github.com/Motion-Games/MotionWebStudio.git
synced 2026-04-21 17:10:54 +02:00
72 lines
3.5 KiB
TypeScript
72 lines
3.5 KiB
TypeScript
import React from 'react';
|
|
import { Facebook, Instagram, Code2, Mail } from 'lucide-react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
export const Footer: React.FC = () => {
|
|
return (
|
|
<footer className="bg-gray-900 text-white pt-16 pb-8 border-t border-gray-800">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
|
|
{/* Brand Info */}
|
|
<div className="space-y-6">
|
|
<div className="flex items-center space-x-2">
|
|
<div className="p-2 bg-gradient-to-br from-primary to-secondary rounded-lg">
|
|
<Code2 className="h-6 w-6 text-white" />
|
|
</div>
|
|
<span className="text-2xl font-bold">MotionWeb</span>
|
|
</div>
|
|
<p className="text-gray-400 text-sm leading-relaxed">
|
|
Innovatív webes megoldások, amelyek üzleti eredményeket hoznak. Teljeskörű digitális partner cégek számára.
|
|
</p>
|
|
<div className="flex space-x-4">
|
|
<a href="#" className="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:bg-primary hover:text-white transition-all duration-300">
|
|
<Facebook size={18} />
|
|
</a>
|
|
<a href="#" className="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:bg-primary hover:text-white transition-all duration-300">
|
|
<Instagram size={18} />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Services */}
|
|
<div>
|
|
<h3 className="text-lg font-bold mb-6 text-white">Szolgáltatások</h3>
|
|
<ul className="space-y-3">
|
|
<li className="text-gray-400 text-sm">Egyedi Weboldal</li>
|
|
<li className="text-gray-400 text-sm">Reszponzív Design</li>
|
|
<li className="text-gray-400 text-sm">SEO Optimalizálás</li>
|
|
<li className="text-gray-400 text-sm">UI/UX Design</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Contact Info - Modified */}
|
|
<div>
|
|
<h3 className="text-lg font-bold mb-6 text-white">Elérhetőség</h3>
|
|
<ul className="space-y-4">
|
|
<li className="flex items-center space-x-3">
|
|
<Mail className="w-5 h-5 text-primary flex-shrink-0" />
|
|
<a href="mailto:motionstudiohq@gmail.com" className="text-gray-400 hover:text-white transition-colors text-sm">motionstudiohq@gmail.com</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Information (Replaced Newsletter) */}
|
|
<div>
|
|
<h3 className="text-lg font-bold mb-6 text-white">Információk</h3>
|
|
<ul className="space-y-3">
|
|
<li><Link to="/privacy" className="text-gray-400 hover:text-primary transition-colors text-sm">Adatkezelési tájékoztató</Link></li>
|
|
<li><Link to="/terms" className="text-gray-400 hover:text-primary transition-colors text-sm">Általános Szerződési Feltételek</Link></li>
|
|
<li><Link to="/faq" className="text-gray-400 hover:text-primary transition-colors text-sm">Gyakori Kérdések</Link></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<p className="text-gray-500 text-sm text-center md:text-left">
|
|
© {new Date().getFullYear()} Motion Web Stúdió. Minden jog fenntartva.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}; |