diff --git a/app/services/website/samples/bakery/page.tsx b/app/services/website/samples/bakery/page.tsx index 5ab0496..402eb53 100644 --- a/app/services/website/samples/bakery/page.tsx +++ b/app/services/website/samples/bakery/page.tsx @@ -1,75 +1,98 @@ import Link from 'next/link'; +const menuItems = [ + { name: '버터 크루아상', price: '3,200', tag: '인기', tagColor: '#dc2626', desc: '프랑스산 에슈레 버터만 사용한 겹겹이 살아있는 크루아상', ingredients: ['에슈레 버터', '천연 발효', 'T65 밀가루'] }, + { name: '소금빵', price: '2,800', tag: '베스트', tagColor: '#d97706', desc: '오키나와 천연 소금과 발효 버터가 만나는 완벽한 짭조름함', ingredients: ['오키나와 소금', '발효 버터', '홋카이도 밀'] }, + { name: '딸기 쇼트케이크', price: '7,500', tag: '신메뉴', tagColor: '#7c3aed', desc: '국내산 딸기와 생크림이 만나는 클래식 케이크', ingredients: ['국내산 딸기', '생크림', '제노아즈'] }, + { name: '캄파뉴', price: '8,900', tag: '장인', tagColor: '#065f46', desc: '72시간 저온 발효로 만든 시큼하고 깊은 맛의 통밀빵', ingredients: ['통밀', '사워도우', '72h 발효'] }, +]; + +const reviews = [ + { name: '김민서', rating: 5, text: '매일 아침 출근 전 들르게 되는 마법 같은 빵집. 크루아상은 그냥 인생 최고입니다.', date: '2024.08', verified: true }, + { name: '이준혁', rating: 5, text: '파리 유학시절 먹던 그 맛과 거의 흡사합니다. 국내에 이런 퀄리티가 있다니 놀랍습니다.', date: '2024.07', verified: true }, + { name: '박지은', rating: 5, text: '웨딩 케이크 주문했는데 하객들이 케이크 맛있다고 난리났어요. 다음에도 꼭 맡기겠습니다!', date: '2024.06', verified: true }, +]; + +const specials = [ + { season: '봄', item: '딸기 타르틀렛', desc: '4월 한정', color: '#fda4af' }, + { season: '여름', item: '레몬 틸레', desc: '7–8월 한정', color: '#fde68a' }, + { season: '가을', item: '밤 크루아상', desc: '10월 한정', color: '#d97706' }, + { season: '겨울', item: '뱅쇼 브리오슈', desc: '12월 한정', color: '#c4b5fd' }, +]; + +const hours = [ + { day: '월~금', time: '07:00 – 20:00' }, + { day: '토요일', time: '07:00 – 21:00' }, + { day: '일·공휴일', time: '09:00 – 18:00' }, +]; + export default function BakerySample() { - const menuItems = [ - { name: '버터 크루아상', price: '3,200', emoji: '🥐', tag: '인기', desc: '프랑스산 에슈레 버터만 사용한 겹겹이 살아있는 크루아상' }, - { name: '소금빵', price: '2,800', emoji: '🍞', tag: '베스트', desc: '오키나와 천연 소금과 발효 버터가 만나는 완벽한 짭조름함' }, - { name: '딸기 쇼트케이크', price: '7,500', emoji: '🍰', tag: '신메뉴', desc: '국내산 딸기와 생크림이 만나는 클래식 케이크' }, - { name: '캄파뉴', price: '8,900', emoji: '🫓', tag: '장인', desc: '72시간 저온 발효로 만든 시큼하고 깊은 맛의 통밀빵' }, - ]; - - const hours = [ - { day: '월~금', time: '07:00 – 20:00' }, - { day: '토요일', time: '07:00 – 21:00' }, - { day: '일요일', time: '09:00 – 18:00' }, - { day: '공휴일', time: '09:00 – 18:00' }, - ]; - return (
{/* Back Banner */} -
- +
+ ← 홈페이지 제작 서비스로 돌아가기 - | - + | + SAMPLE · 베이커리 홈페이지
{/* Navbar */}