diff --git a/src/roadmaps/frontend/faqs.astro b/src/roadmaps/frontend/faqs.astro index 98c1a28c3..ff14be502 100644 --- a/src/roadmaps/frontend/faqs.astro +++ b/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.", + }, +]; ---