Create a new feature pages/info/ directory and add an AboutPage.js component.
Add routing in the App.js directory
Create a link to the page in the header.
My first idea is as an About icon in the header, but there are other very common UX solutions for this, such as:
as a footer with about page link: A normal pattern for sites is to have a footer with links such as about, terms of use, privacy policy, etc
have the site icon in the header link to the about page. Currently it is only the stock React logo, but when the site has branding and a proper custom logo, this is an option
have a landing page rather than the posts list which is currently the default route and use the Home icon route for this page.
Basic steps would include:
My first idea is as an About icon in the header, but there are other very common UX solutions for this, such as:
Thoughts on this would be welcome.