import Image from "next/image"; import Link from "next/link"; import introImage1 from "@/public/home/intro/church1.webp"; import introImage3 from "@/public/home/intro/pray.webp"; export default function Intro() { const items = [ { image: introImage1, title: "주일 설교", subtitle: "Sunday Sermon", category: "sermon", }, { image: introImage3, title: "금요 성령집회", subtitle: "Friday Meeting", category: "friday", } ]; return (

Worship services.

금주의 예배와 찬양

{items.map((item, index) => ( {/* 배경 이미지 레이어 */} {item.title} {/* 검은색 오버레이 */}
{/* 컨텐츠 */}
{/* 텍스트 */}

{item.title}

{item.subtitle}

{/* 오른쪽 아래 화살표 */}
))}
); }