This example/demo page is written in Default Home Page Layout.
This is the layout we have used to create Home, About, Icons, Privacy Policy, Terms & Conditions pages.
// import PageLayout from componentsimport { ..., PageLayout, ... } from "../../../src/components";const Article = () => {return (// pass home as shown<PageLayout home>{/* Start writing your article here */}</PageLayout>)}export default Article;
The above code block gives you a demo on how to use the layout. If you want to see this in action check this article file
home-layout.tsx in pages/tutorial.
This layout is full width, you can create full width sections using this layout.