Page
Place to create partial section elements from routing pages.
Overview
Consider page-specific components (page), If there are components that are specific to a particular page, it is better to keep them within the page directory. This can help to keep the code organized and make it easier to understand the relationships between the components and the pages they belong to.
How to use
If you are going to create a web page that applies only to the project then you can use this method.
Step 1: Create routing page index
The first step you have to create a index file page. Folder in src/pages
Step 2: Create page-specific component
The next step is to create some files that are used for the partial design of the page. Folder in src/components/page
Regarding naming conventions folder components, you can use <page name>page
with capitalize.
Step 3: Import page component
In the routing page we will import the related page component that was separated earlier. code can be put in pages/index.tsx
Last updated