Quick Start Guide
This section provides an overview of Quick Start Guide.
Follow these simple instructions to set up your project efficiently and begin creating content without delay!:
Documentation
Configure Routing
Open the
@lib/route-config.tsfile and add your routing pages:export const ROUTES: EachRoute[] = [ // Add new route below { title: "Fundamentals", href: "/fundamentals", noLink: true, // Set to true to prevent routing items: [ // All the sub-sections under `fundamentals` { title: "HTTP Server", href: "/http-server" }, ], }, ];
Create Content Structure
- Navigate to the
@content/docsdirectory and create a folder namedfundamentals, as defined in theroute-configfile. Within this folder, create a subfolder namedhttp-server, and inside that, create anindex.mdxfile that will render when you navigate to/fundamentals/http-server:
- Navigate to the
<Files items={[ { type: "folder", name: "content", isOpen: true, children: [ { type: "folder", name: "docs", isOpen: true, children: [ { type: "folder", name: "fundamentals", isOpen: true, children: [ { type: "folder", name: "http-server", isOpen: true, children: [{ type: "file", name: "index.mdx" }], }, ], }, ], }, ], }, ]} />
- Write Your Markdown Content
- Start writing your markdown content inside the
index.mdxfile.
- Start writing your markdown content inside the
```markdown:index.mdx showLineNumbers {1-4}
---
title: HTTP Server
description: This section is about HTTP Server.
---
<!-- Here goes your markdown content -->
```
- Run Your Application
- Ensure your application is running. Navigate to
http://localhost:3000/docs/fundamentals/http-serverto view your content. You should also see it in the left panel, allowing you to navigate to other pages.
- Ensure your application is running. Navigate to
Blogs
To get started with blogs, follow these steps:
- Navigate to the
@content/blogsdirectory and create a file with a unique name prefixed with.mdx, then start writing the markdown content inside.
---
title: "Building a Recursive File System with React: A Deep Dive"
description: "Explore how to create a recursive file system in React. This blog post provides a comprehensive guide on building a file system where folders and files can be nested, added, renamed, and deleted."
date: 02-09-2024
authors:
- avatar: "https://ui.shadcn.com/avatars/02.png"
handle: nisabmohd
username: Nisab Mohd
handleUrl: "https://github.com/nisabmohd"
cover: "https://img.freepik.com/premium-vector/many-monsters-various-colors-doodle-come-bless-birthday-happy_577083-84.jpg?w=826"
---
<!-- Your blog markdown content -->
- Navigate to your local development server at
http://localhost:3000/blog, where you will see your blog listed and sorted based on date. You can navigate to any blog to read it.
Explore Further
This section serves as your starting point for exploring the application. By following the steps above, you can quickly and easily set up your content. For more customization and control, please refer to the following pages.