-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlistData.ts
More file actions
65 lines (65 loc) · 1.78 KB
/
listData.ts
File metadata and controls
65 lines (65 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
export const listData = [
{
id: 1,
name: '장소 이름 1',
address: '서울시 강남구',
description: '서울의 중심에서 즐기는 고급 디저트 카페입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 2,
name: '장소 이름 2',
address: '부산시 해운대구',
description: '해운대 바다가 보이는 감성 카페입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 3,
name: '장소 이름 3',
address: '제주시 애월읍',
description: '애월 해변을 바라보며 커피 한 잔.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 4,
name: '장소 이름 4',
address: '광주시 서구',
description: '아늑한 분위기의 브런치 레스토랑입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 5,
name: '장소 이름 5',
address: '대전시 유성구',
description: '정원 뷰가 매력적인 루프탑 카페입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 6,
name: '장소 이름 6',
address: '인천시 연수구',
description: '감각적인 인테리어의 디저트 카페입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 7,
name: '가톨릭대학교 캠퍼스',
address: '경기도 부천시',
description: '가톨릭대학교 부천 캠퍼스 전경입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 8,
name: '부천 관광지 A',
address: '경기도 부천시',
description: '부천의 인기 관광지 중 하나입니다.',
imageSrc: '/assets/sample1.jpg',
},
{
id: 9,
name: '장소 이름 9',
address: '속초시 영랑동',
description: '바다 앞 카페로 일몰이 아름답기로 유명합니다.',
imageSrc: '/assets/sample1.jpg',
},
];