회원가입 기능 추가
All checks were successful
Build And Test / build-and-push (push) Successful in 1m36s

This commit is contained in:
2025-05-18 01:58:01 +09:00
parent c319f9ba78
commit 921359ad71
10 changed files with 211 additions and 83 deletions

View File

@ -6,18 +6,10 @@ const Footer = () => {
return (
<footer className="bg-gray-900 text-white mt-auto">
<div className="container mx-auto px-4 py-12">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<h3 className="text-xl font-bold mb-4">TechEdu</h3>
<p className="text-gray-400">최고의 IT 교육 플랫폼으로 당신의 커리어를 성장시키세요.</p>
</div>
<div>
<h4 className="text-lg font-semibold mb-4">Quick Links</h4>
<ul className="space-y-2">
<li><button onClick={() => navigate('/')} className="text-gray-400 hover:text-white">Home</button></li>
<li><button onClick={() => navigate('/about')} className="text-gray-400 hover:text-white">About</button></li>
<li><button onClick={() => navigate('/board')} className="text-gray-400 hover:text-white">Board</button></li>
</ul>
<h3 className="text-xl font-bold mb-4">System Management Portal</h3>
<p className="text-gray-400">시스템 관리 포탈입니다.</p>
</div>
<div>
<h4 className="text-lg font-semibold mb-4">Categories</h4>
@ -30,14 +22,14 @@ const Footer = () => {
<div>
<h4 className="text-lg font-semibold mb-4">Contact</h4>
<ul className="space-y-2 text-gray-400">
<li className="flex items-center"><i className="fas fa-envelope mr-2"></i> contact@techedu.com</li>
<li className="flex items-center"><i className="fas fa-phone mr-2"></i> 02-1234-5678</li>
<li className="flex items-center"><i className="fas fa-map-marker-alt mr-2"></i> 123</li>
<li className="flex items-center"><i className="fas fa-envelope mr-2"></i> icurfer@gmail.com</li>
<li className="flex items-center"><i className="fas fa-phone mr-2"></i> -</li>
<li className="flex items-center"><i className="fas fa-map-marker-alt mr-2"></i> -</li>
</ul>
</div>
</div>
<div className="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2025 TechEdu. All rights reserved.</p>
<p> Copyright &copy; icurfer 2025</p>
</div>
</div>
</footer>