-
Notifications
You must be signed in to change notification settings - Fork 0
/
families.js
99 lines (99 loc) · 2.76 KB
/
families.js
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
const families = [{
id: 'rec43w3ipXvP28vog',
title: 'Ned Stark',
family: 'Stark',
image: '/src/ned.jpg',
url: 'https://tr.wikipedia.org/wiki/Ned_Stark'
},
{
id: 'rec4f2RIftFCb7aHh',
title: 'Sansa Stark',
family: 'Stark',
image: '/src/sansa.jpg',
url: 'https://tr.wikipedia.org/wiki/Sansa_Stark'
},
{
id: 'rec8kkCmSiMkbkiko',
title: 'Arya Stark',
family: 'Stark',
image: '/src/arya.jpg',
url: 'https://en.wikipedia.org/wiki/Arya_Stark'
},
{
id: 'recBohCqQsot4Q4II',
title: 'Robb Stark',
family: 'Stark',
image: '/src/robbstark.jpg',
url: 'https://tr.wikipedia.org/wiki/Robb_Stark'
},
{
id: 'recDG1JRZnbpRHpoy',
title: 'Bran Stark',
family: 'Stark',
image: '/src/bran.jpg',
url: 'https://en.wikipedia.org/wiki/Bran_Stark'
},
{
id: 'recNWGyP7kjFhSqw3',
title: 'Tyrion Lannister',
family: 'Lannister',
image: '/src/tyrion.jpg',
url: 'https://tr.wikipedia.org/wiki/Tyrion_Lannister'
},
{
id: 'recZEougL5bbY4AEx',
title: 'Tywin Lannister',
family: 'Lannister',
image: '/src/tywin-lannister.jpg',
url: 'https://tr.wikipedia.org/wiki/Tywin_Lannister'
},
{
id: 'recjMK1jgTb2ld7sv',
title: 'Joffrey Lannister',
family: 'Lannister',
image: '/src/joffrey.jpg',
url: 'https://en.wikipedia.org/wiki/Joffrey_Baratheon'
},
{
id: 'recjMK1jgTb2ld7sv',
title: 'Cersei Lannister',
family: 'Lannister',
image: '/src/cersei.jpg',
url: 'https://tr.wikipedia.org/wiki/Cersei_Lannister'
},
{
id: 'recjMK1jgTb2ld7sv',
title: 'Jaime Lannister',
family: 'Lannister',
image: '/src/jaime.webp',
url: 'https://tr.wikipedia.org/wiki/Jaime_Lannister'
},
{
id: 'recxaXFy5IW539sgM',
title: 'Jon Snow',
family: 'Aegon',
image: '/src/jonSnow.jpeg',
url: 'https://en.wikipedia.org/wiki/Jon_Snow_(character)'
},
{
id: 'recyqtRglGNGtO4Q5',
title: 'Daenerys Targaryen',
family: 'Aegon',
image: '/src/khaleesi.webp',
url: 'https://tr.wikipedia.org/wiki/Daenerys_Targaryen'
},
{
id: 'recyqtRglGNGtO4Q5',
title: 'Robert Baretheon',
family: 'Baretheon',
image: '/src/robert.webp',
url: 'https://tr.wikipedia.org/wiki/Robert_Baratheon'
},
{
id: 'recyqtRglGNGtO4Q5',
title: 'Stannis Baretheon',
family: 'Baretheon',
image: '/src/stannis.webp',
url: 'https://en.wikipedia.org/wiki/Stannis_Baratheon'
},
];