forked from GDSC-Jadavpur-University/GDSC-JU-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/Icon-hover-in-Darkmode
- Loading branch information
Showing
32 changed files
with
849 additions
and
610 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"printWidth": 120, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"bracketSpacing": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from "react"; | ||
import {Accordion, AccordionItem} from "@nextui-org/react"; | ||
|
||
export default function FAQS() { | ||
const ans1= | ||
" The GDSC JU community is open to both seasoned techies and beginners in the Tech world. Whether you are into development or CP, or even if you are into more non-coding related technical domains like graphic design and documentation, the commmunity is open to every Jadavpur University student with a passion for technology "; | ||
const ans3= | ||
"You can be involved in the community of one or more GDSC chapters, however you can be a core team member in only one GDSC chapter. "; | ||
const ans2 = | ||
"No, Code Club JU and GDSC, despite both being involved in encouraging coding habits among students, donot refer to the same entity."; | ||
|
||
return ( | ||
<Accordion selectionMode="multiple"> | ||
<AccordionItem key="1" aria-label="Q 1" title="Can those new to programming join GDSC-JU community?"> | ||
{ans1} | ||
</AccordionItem> | ||
<AccordionItem key="2" aria-label="Q 2" title="Is GDSC same as CodeClub JU?"> | ||
{ans2} | ||
</AccordionItem> | ||
<AccordionItem key="3" aria-label="Q 3" title="Can I be a part of more than one GDSC chapter?"> | ||
{ans3} | ||
</AccordionItem> | ||
</Accordion> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.