Add FAQs for frontend roadmap

faqs/frontend
Kamran Ahmed 2 years ago
parent 6922fd826f
commit 3a4e78645c
  1. 13
      src/roadmaps/frontend/faqs.astro

@ -2,6 +2,19 @@
import Answer from '../../components/FAQs/Answer.astro';
import FAQs from '../../components/FAQs/FAQs.astro';
import Question from '../../components/FAQs/Question.astro';
const questions = [
{
question: 'What is Frontend Development?',
answer:
"Front-end development is the devleopment of visual and interactive elements of a website that users interact with directly. It's a combination of HTML, CSS and JavaScript, where HTML provides the structure, CSS the styling and layout, and JavaScript the dynamic behaviour and interactivity.",
},
{
question: 'Who is a frontend developer?',
answer:
"As a front-end developer, you'll be responsible for creating the user interface of a website, to ensure it looks good and is easy to use, with great focus on design principles and user experience. You'll be working closely with designers, back-end developers, and project managers to make sure the final product meets the client's needs and provides the best possible experience for the end-users.",
},
];
---
<FAQs>

Loading…
Cancel
Save