Files
jaejadle/nextjs/components/widgets/Footer.tsx
Mayne0213 f78454c2a1
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled
CHORE(merge): merge from develop
- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
2026-01-06 17:29:16 +09:00

52 lines
1.8 KiB
TypeScript

import Link from 'next/link';
import { Youtube } from 'lucide-react';
import Image from 'next/image';
import cafeIcon from '@/public/footer/cafe.webp';
export default function Footer() {
return (
<footer className="bg-slate-900 border-t border-slate-800">
<div className="mx-auto px-6 py-8">
<div className="flex flex-col gap-4">
{/* 하단 정보 */}
<div className="space-y-2 text-sm text-slate-400">
<p>
담임목사 : 김경한 | 주소 : 인천광역시 95 32 3 / 4
</p>
<Link href="/login" className="text-slate-500">
<p>
COPYRIGHT © 2026 DISCIPLES CHURCH. All rights reserved.
</p>
</Link>
</div>
{/* 아이콘들 */}
<div className="flex items-center gap-4">
<Link
href="https://www.youtube.com/@Disciples2015"
className="text-slate-100 hover:text-white transition-colors cursor-pointer flex flex-col items-center gap-1"
aria-label="YouTube"
>
<Youtube className="w-6 h-6" />
<span className='text-xs'></span>
</Link>
<Link
href="https://cafe.naver.com/discipling"
className="text-slate-100 hover:text-white transition-colors cursor-pointer flex flex-col items-center gap-1"
aria-label="Naver Cafe"
>
<Image
src={cafeIcon}
alt="Naver Cafe"
width={24}
height={24}
placeholder="blur"
/>
<span className='text-xs'> </span>
</Link>
</div>
</div>
</div>
</footer>
);
}