generated from mantinedev/next-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.ts
97 lines (93 loc) · 2.42 KB
/
constants.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
import {
IconBrandFacebook,
IconBrandInstagram,
IconBrandSpotify,
IconBrandYoutube,
IconMail,
IconSpeakerphone,
} from "@tabler/icons-react";
// used in the banner notification and the auditions page
export const auditionFormLink =
"https://docs.google.com/forms/d/e/1FAIpQLSd9nazrWF5PXDPLGGuCTs2lBWPNhDZU_R6nosz52Zl8rgUc4Q/viewform?usp=preview";
{
/* Banner Notification */
}
export const currentBannerNotification = {
title: "🎤 Auditions Open Now!",
message: "Join our group and showcase your talent!",
link: auditionFormLink,
linkText: "Sign up + details here!",
color: "gray",
icon: IconSpeakerphone,
};
{
/* For the Navbar // Navigation */
}
export const pages = [
{
href: "/",
title: "Home",
description: "The SympVibes website home page!",
},
{
href: "/tickets",
title: "Tickets",
description: "Purchase tickets for our upcoming concerts!",
},
{
href: "/concerts",
title: "Concerts",
description: "Details about our semesterly concerts!",
},
// {
// href: '/program',
// title: "Program",
// description: 'View the program for our Fall 2024 concerts!',
// },
{
href: "/auditions",
title: "Auditions",
description: "Information about the audition process to become a member of SympVibes!",
},
{
href: "/members",
title: "Members",
description: "Get to know the people in SympVibes!",
},
{
href: "/music",
title: "Music",
description: "A sneak peek at some of our repertoire and recordings!",
},
{
href: "/contact",
title: "Contact",
description: "Get in touch with the group!",
},
];
export const footerLinks = [
{
icon: IconBrandInstagram,
href: "https://www.instagram.com/sympvibes/",
title: "Instagram",
},
{
icon: IconBrandYoutube,
href: "https://m.youtube.com/@SympVibesMusic",
},
{
icon: IconBrandFacebook,
href: "https://www.facebook.com/SympVibes/",
title: "Facebook",
},
{
icon: IconMail,
href: "mailto:gtsympvibes@gmail.com",
title: "Email",
},
{
icon: IconBrandSpotify,
href: "https://open.spotify.com/artist/4Rhcg68dphZbx9v8ZkY6pT?si=axF_GeXEQciKBF37psZW5w",
title: "Spotify",
},
];