Read the Images section.Images#
Read the Headings section.Headings#
Read the h2 section.h2#
Read the h3 section.h3#
Read the h4 section.h4#
Read the h5 section.h5#
Read the h6 section.h6#
Read the Text section.Text#
this text is bold
this text is italic
this text is strikethrough
Read the Blockquotes section.Blockquotes#
Somewhere, something incredible is waiting to be known.
Read the Lists section.Lists#
Read the Unordered section.Unordered#
- Lorem ipsum dolor sit amet
- Lorem ipsum dolor sit amet
- Lorem ipsum dolor sit amet
Read the ordered section.ordered#
- Lorem ipsum dolor sit amet
- Lorem ipsum dolor sit amet
- Lorem ipsum dolor sit amet
Read the Code section.Code#
Inline code
Read the JavaScriptReact code section.JavaScriptReact code#
src/pages/_app.jsx
1import { ChakraProvider } from "@chakra-ui/react"2import { DefaultSeo } from "next-seo"34import theme from "@/theme/index"5import Layout from "@/layouts/global"6import SEO from "next-seo.config"78import "@fontsource/poppins/latin-400.css"9import "@fontsource/poppins/latin-500.css"10import "@fontsource/poppins/latin-600.css"11import "@fontsource/poppins/latin-700.css"12import "@/styles/index.css"1314const MyApp = ({ Component, pageProps }) => (15 <>16 <DefaultSeo {...SEO} />1718 <ChakraProvider theme={theme}>19 <Layout>20 <Component {...pageProps} />21 </Layout>22 </ChakraProvider>23 </>24)2526export default MyApp27