-
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.
- Loading branch information
1 parent
b547f0a
commit cd56aac
Showing
11 changed files
with
253 additions
and
96 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
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
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,156 @@ | ||
import * as React from 'react'; | ||
import Accordion from '@mui/material/Accordion'; | ||
import AccordionDetails from '@mui/material/AccordionDetails'; | ||
import AccordionSummary from '@mui/material/AccordionSummary'; | ||
import Box from '@mui/material/Box'; | ||
import Container from '@mui/material/Container'; | ||
import Typography from '@mui/material/Typography'; | ||
|
||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; | ||
|
||
export default function FAQ() { | ||
const [expanded, setExpanded] = React.useState(false); | ||
|
||
const handleChange = (panel) => (event, isExpanded) => { | ||
setExpanded(isExpanded ? panel : false); | ||
}; | ||
|
||
return ( | ||
<Container | ||
id="faq" | ||
sx={{ | ||
pt: { xs: 4, sm: 12 }, | ||
pb: { xs: 8, sm: 16 }, | ||
position: 'relative', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
gap: { xs: 3, sm: 6 }, | ||
}} | ||
> | ||
<Typography | ||
component="h2" | ||
variant="h4" | ||
color="text.primary" | ||
sx={{ | ||
width: { sm: '100%', md: '60%' }, | ||
textAlign: { sm: 'left', md: 'center' }, | ||
}} | ||
> | ||
Why Geeks Ink Courses | ||
</Typography> | ||
<Box sx={{ width: '100%' }}> | ||
<Accordion | ||
expanded={expanded === 'panel1'} | ||
onChange={handleChange('panel1')} | ||
> | ||
<AccordionSummary | ||
expandIcon={<ExpandMoreIcon />} | ||
aria-controls="panel1d-content" | ||
id="panel1d-header" | ||
> | ||
<Typography component="h3" variant="subtitle2" | ||
sx={{ | ||
fontSize: '25px', | ||
fontWeight: '400', | ||
}} | ||
> | ||
✨ Expert-Led Instruction | ||
</Typography> | ||
</AccordionSummary> | ||
<AccordionDetails> | ||
<Typography | ||
variant="body2" | ||
gutterBottom | ||
sx={{ maxWidth: { sm: '100%', md: '70%' } }} | ||
> | ||
Immerse yourself in courses taught by tech industry leaders, gaining practical knowledge from those who have pioneered innovations. | ||
</Typography> | ||
</AccordionDetails> | ||
</Accordion> | ||
<Accordion | ||
expanded={expanded === 'panel2'} | ||
onChange={handleChange('panel2')} | ||
> | ||
<AccordionSummary | ||
expandIcon={<ExpandMoreIcon />} | ||
aria-controls="panel2d-content" | ||
id="panel2d-header" | ||
> | ||
<Typography component="h3" variant="subtitle2" | ||
sx={{ | ||
fontSize: '25px', | ||
fontWeight: '400', | ||
}}> | ||
✨ Open Source Advocacy | ||
</Typography> | ||
</AccordionSummary> | ||
<AccordionDetails> | ||
<Typography | ||
variant="body2" | ||
gutterBottom | ||
sx={{ maxWidth: { sm: '100%', md: '70%' } }} | ||
> | ||
Embrace the philosophy of open-source development advocated by our instructors, understanding its significance in the ever-evolving tech landscape. | ||
</Typography> | ||
</AccordionDetails> | ||
</Accordion> | ||
<Accordion | ||
expanded={expanded === 'panel3'} | ||
onChange={handleChange('panel3')} | ||
> | ||
<AccordionSummary | ||
expandIcon={<ExpandMoreIcon />} | ||
aria-controls="panel3d-content" | ||
id="panel3d-header" | ||
> | ||
<Typography component="h3" variant="subtitle2" | ||
sx={{ | ||
fontSize: '25px', | ||
fontWeight: '400', | ||
}} | ||
> | ||
✨ Practical Assignments | ||
</Typography> | ||
</AccordionSummary> | ||
<AccordionDetails> | ||
<Typography | ||
variant="body2" | ||
gutterBottom | ||
sx={{ maxWidth: { sm: '100%', md: '70%' } }} | ||
> | ||
Apply your learning through hands-on projects, receiving guidance and feedback directly from industry experts. | ||
</Typography> | ||
</AccordionDetails> | ||
</Accordion> | ||
<Accordion | ||
expanded={expanded === 'panel4'} | ||
onChange={handleChange('panel4')} | ||
> | ||
<AccordionSummary | ||
expandIcon={<ExpandMoreIcon />} | ||
aria-controls="panel4d-content" | ||
id="panel4d-header" | ||
> | ||
<Typography component="h3" variant="subtitle2" | ||
sx={{ | ||
fontSize: '25px', | ||
fontWeight: '400', | ||
}}> | ||
✨ Career Path Support | ||
</Typography> | ||
</AccordionSummary> | ||
<AccordionDetails> | ||
<Typography | ||
variant="body2" | ||
gutterBottom | ||
sx={{ maxWidth: { sm: '100%', md: '70%' } }} | ||
> | ||
Navigate your tech career with features like progress tracking, assignment feedback, and a dedicated helpdesk, all under the guidance of seasoned professionals. | ||
</Typography> | ||
</AccordionDetails> | ||
</Accordion> | ||
</Box> | ||
</Container> | ||
); | ||
} |
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.