-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
108 lines (105 loc) · 2.79 KB
/
data.ts
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
100
101
102
103
104
105
106
107
108
import FotoXixilonaIBenet from "public/xixilona-i-benet.jpg";
import FotoCalendari from "public/calendari.png";
import FotoHistoria from "public/historia.jpg";
import FotoLaColla from "public/la-colla-home.jpg";
import {StaticImageData} from "next/dist/client/image";
export const pages: { title: string, route: string, isSelected: (route: string) => boolean, description?: string, image?: StaticImageData }[] = [
{
title: "Inici",
route: "/",
isSelected: (route: string) => route === "/"
},
{
title: "Els gegants",
route: "/els-gegants",
isSelected: (route: string) => route === "/els-gegants",
description: "Coneix a la Xixilona, en Magí, en Benet, en Garric, en Verdet i en Mussolet!",
image: FotoXixilonaIBenet
},
{
title: "Calendari",
route: "/calendari",
isSelected: (route: string) => route === "/calendari",
description: "Informació de les properes sortides que faran els gegants durant l'any.",
image: FotoCalendari
},
{
title: "Història",
route: "/historia",
isSelected: (route: string) => route === "/historia",
description: "Els nostres gegants han viscut una vida interessant durant més de 80 anys, coneix-la!",
image: FotoHistoria
},
{
title: "Racó geganter",
route: "/la-colla",
isSelected: (route: string) => racoGeganterPages.map(page => page.route as string).includes(route),
description: "Curiositats de la colla, materials pels més petits...",
image: FotoLaColla
},
{
title: "Contacte",
route: "/contacte",
isSelected: (route: string) => route === "/contacte"
}
];
export const racoGeganterPages: {
name: string,
route?: "/la-colla"
| "/la-musica"
| "/els-assajos"
| "/pintables-de-gegants"
| "/gegants-de-cartro"
| "/mussolet-3d"
| "/robots-geganters"
| "/cartells-trobades"
| "/catifes-corpus",
indented?: boolean
}[] = [
{
name: "La colla",
route: "/la-colla"
},
{
name: "La música",
route: "/la-musica"
},
{
name: "Els assajos",
route: "/els-assajos"
},
{
name: "Pels més petits"
},
{
name: "Pintables de gegants",
route: "/pintables-de-gegants",
indented: true
},
{
name: "Gegants de cartró",
route: "/gegants-de-cartro",
indented: true
},
{
name: "Mussolet 3D",
route: "/mussolet-3d",
indented: true
},
{
name: "Robots geganters",
route: "/robots-geganters",
indented: true
},
{
name: "Cartells de les trobades",
route: "/cartells-trobades"
},
{
name: "Catifes de Corpus",
route: "/catifes-corpus"
},
];
export const instagramLink = "https://www.instagram.com/gegantsdelagarriga/";
export const twitterLink = "https://twitter.com/gegantsgarriga/";
export const blogLink = "https://gegantsdelagarriga.blogspot.com/";