From 95d8a5e52ced2d01d3440d697d78acafa093517f Mon Sep 17 00:00:00 2001 From: gahusb Date: Sun, 22 Mar 2026 12:17:32 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=83=98=ED=94=8C=20=ED=99=88=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=205=EC=A2=85=20=EB=AA=A9=EC=A0=81=EC=84=B1?= =?UTF-8?q?=EC=97=90=20=EB=A7=9E=EA=B2=8C=20=EC=A0=84=EB=A9=B4=20=EB=A6=AC?= =?UTF-8?q?=ED=8C=A9=ED=86=A0=EB=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - bakery: 이모지 → SVG 빵/셰프 일러스트, 고객 리뷰 섹션, 시즌 스페셜 섹션, 재료 태그 추가 - portfolio: 수상내역 마퀴 배너, 서비스 섹션, 프로젝트 카테고리 필터+호버 오버레이, 클라이언트 후기 추가 - dashboard: SVG 라인 차트, KPI 스파크라인, 알림 패널, 도넛 차트, 사용자 아바타 테이블 개선 - game: 챔피언 선택 섹션, 시즌 패스 진행 바, 최근 매치 히스토리, 파티클 배경, 티어 SVG 배지 Co-Authored-By: Claude Sonnet 4.6 --- app/services/website/samples/bakery/page.tsx | 542 +++++++++++----- .../website/samples/dashboard/page.tsx | 593 +++++++++-------- app/services/website/samples/game/page.tsx | 593 +++++++++-------- .../website/samples/portfolio/page.tsx | 601 ++++++++++-------- 4 files changed, 1347 insertions(+), 982 deletions(-) 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 */}