import { addBanner, addArticle, addTitle, addHeader, addParagraph, addClassParagraph, addSubHeader, addOrderedList, addUnorderedList, addBlockquote, addInset, addInsetList, addInsetCodeListing, addInsetBulletList, addImageWithCaption, addButtonGroup, addSidebar, addSyntax } from '/scripts/import.js'; const heading = document.querySelector(".heading"); const global = document.querySelector(".global_menu"); const local = document.querySelector(".local_menu"); const sidebar = document.querySelector(".sidebar"); const main = document.querySelector(".main_content"); heading.append(addTitle("Building Modern Projects with React")); heading.append(addParagraph("Shaun Wassell - LinkedIn Learning - November 2024")); heading.append(addParagraph("Conclusion")); main.append(addSubHeader("Next Steps for Building with React")); addSidebar("webdev"); sidebar.append(addSubHeader("Some useful links:")); sidebar.append(addParagraph("A link to this course.")); sidebar.append(addParagraph("React Build Tools: Create React App with Vite Vs. CRA.")); sidebar.append(addSubHeader("Documentation and Guides")); sidebar.append(addParagraph("Webpack Documentation.")); sidebar.append(addParagraph("Webpack Guides.")); sidebar.append(addParagraph("Vite Documentation.")); sidebar.append(addParagraph("Getting Started with Vite.")); sidebar.append(addParagraph("Next.js Documentation.")); sidebar.append(addParagraph("Remix Documentation.")); sidebar.append(addParagraph("Remix Templates.")); sidebar.append(addSubHeader("Related Courses on LinkedIn")); sidebar.append(addParagraph("Databases for node.js Developers.")); sidebar.append(addParagraph("Learning node.js.")); sidebar.append(addParagraph("Advanced Express.")); sidebar.append(addParagraph("Securing Restfuk APIs.")); sidebar.append(addParagraph("MongoDB Essential Training.")); sidebar.append(addParagraph("Next.js: Creating and Hosting a Full-Stack Site.")); sidebar.append(addParagraph("React: Creating and Hosting a Full-Stack Site.")); sidebar.append(addParagraph("Remix Essential Training.")); sidebar.append(addParagraph("Emerging Web Frameworks."));