forked from mitblr-club/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.ts
29 lines (28 loc) · 1.18 KB
/
home.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
import { FAQItem } from '@/types/faq-item';
export const homeConfig = {
tagline: 'One Ecosystem for all Clubs.',
description:
'Empower your MIT Bengaluru club experience with our centralized platform, seamlessly managing and collaborating on events, blogs, and administration.',
FAQConfig: [
{
question: 'What is mitblr.club?',
answer:
'mitblr.club serves as a centralized platform for MIT, Bengaluru clubs, streamlining event management, administrative functions, and fostering collaboration among clubs.',
},
{
question: 'Who maintains the mitblr.club ecosystem?',
answer:
'While mitblr.club is maintained by the CodeX club, it is open-source and clubs are encouraged to contribute to the project.',
},
{
question: 'Is mitblr.club free to use?',
answer:
'Yes, mitblr.club is compltely free to use, including obtaining a club specific subdomain and Outlook id',
},
{
question: 'Does mitblr.club have a mobile app?',
answer:
'Yes, mitblr.club has multiple apps designed for both Android and iOS. You can find the links to the apps on the home page.',
},
] satisfies FAQItem[],
};