웹 디자인 전면 개편

This commit is contained in:
2026-02-17 08:15:41 +09:00
parent 7042373448
commit 028bda551f
16 changed files with 1850 additions and 1050 deletions

161
components/Footer.tsx Normal file
View File

@@ -0,0 +1,161 @@
import Link from 'next/link';
export default function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="bg-[#173658] text-white pt-16">
<div className="container-custom pb-8">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
{/* 브랜드 */}
<div>
<div className="flex items-center space-x-2 mb-4">
<div className="w-10 h-10 bg-gradient-to-br from-[#d4af37] to-[#F3E7E3] rounded-lg flex items-center justify-center">
<span className="text-[#173658] text-xl font-bold"></span>
</div>
<span className="text-xl font-bold"></span>
</div>
<p className="text-gray-400 text-sm leading-relaxed">
AI와 <br />
</p>
<div className="flex space-x-3 mt-4">
<a
href="#"
className="w-9 h-9 bg-[#122a45] rounded-lg flex items-center justify-center hover:bg-[#1e426a] transition-colors"
aria-label="Facebook"
>
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
</svg>
</a>
<a
href="#"
className="w-9 h-9 bg-[#122a45] rounded-lg flex items-center justify-center hover:bg-[#1e426a] transition-colors"
aria-label="Instagram"
>
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
</svg>
</a>
<a
href="#"
className="w-9 h-9 bg-[#122a45] rounded-lg flex items-center justify-center hover:bg-[#1e426a] transition-colors"
aria-label="YouTube"
>
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/>
</svg>
</a>
</div>
</div>
{/* 서비스 */}
<div>
<h3 className="font-bold text-lg mb-4"></h3>
<ul className="space-y-2">
<li>
<Link href="/saju" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</Link>
</li>
<li>
<Link href="/compatibility" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</Link>
</li>
<li>
<Link href="/tojeong" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</Link>
</li>
<li>
<Link href="/fortune" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</Link>
</li>
</ul>
</div>
{/* 고객 지원 */}
<div>
<h3 className="font-bold text-lg mb-4"> </h3>
<ul className="space-y-2">
<li>
<Link href="/mypage" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</Link>
</li>
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</a>
</li>
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</a>
</li>
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
1:1
</a>
</li>
</ul>
</div>
{/* 정보 */}
<div>
<h3 className="font-bold text-lg mb-4"></h3>
<ul className="space-y-2">
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</a>
</li>
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</a>
</li>
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</a>
</li>
<li>
<a href="#" className="text-gray-400 hover:text-[#d4af37] transition-colors">
</a>
</li>
</ul>
</div>
</div>
{/* 하단 정보 */}
<div className="border-t border-gray-700 mt-8 pt-8">
<div className="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
<div className="text-gray-400 text-sm text-center md:text-left">
<p>&copy; {currentYear} . All rights reserved.</p>
<p className="mt-1">사업자등록번호: 123-45-67890 | 대표: 홍길동</p>
</div>
<div className="flex items-center space-x-4">
<div className="flex items-center space-x-2">
<svg className="w-5 h-5 text-[#d4af37]" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M2.166 4.999A11.954 11.954 0 0010 1.944 11.954 11.954 0 0017.834 5c.11.65.166 1.32.166 2.001 0 5.225-3.34 9.67-8 11.317C5.34 16.67 2 12.225 2 7c0-.682.057-1.35.166-2.001zm11.541 3.708a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
</svg>
<span className="text-gray-400 text-sm"> </span>
</div>
<div className="flex items-center space-x-2">
<svg className="w-5 h-5 text-[#d4af37]" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z" clipRule="evenodd" />
</svg>
<span className="text-gray-400 text-sm"> </span>
</div>
</div>
</div>
</div>
</div>
</footer>
);
}