Skip to content

tusharnankani/undirected-graph

Repository files navigation

Tushar Nankani's Undirected Graph



The overload of ideas has pushed me to connect the dots, analogous to my directionless, although somehow connected thoughts forming a data structure.

Undirected Graph



Netlify Status MADE BY Next.js


About

image

Features

  • Tagging: organizes content by tags
  • Author: displays author names who write a post
  • Pagination: limits the number of posts per page
  • CMS: built with CMS to allow editors modifying content with the quickest way
  • SEO optimized: built-in metadata like JSON-LD
  • Shortcode: extends content writing with React component like WordPress shortcodes

Dependencies

Local Setup || Contributing

  • Fork this repository.
  • Clone the repository: git clone https://github.com/<your-username>/undirected-graph.git
  • Change directory: cd undirected-graph
  • Change branch before making any changes: git checkout -b "feat/add-new-feat"
  • Run npm run dev to start the devlopment server. Go to localhost:3000
  • Make changes and push to the respective branch.
  • Open a Pull Request.

Styling pages by a customized theme

All source codes related to the blog are under components and pages directory. You can modify it freely if you want to apply your design theme. All components use styled-jsx and css-modules to define their styles, but you can choose any styling libraries for designing your theme.

The directory tree containing the blog source code are described below:

meta: yaml files defining metadata like authors or tags
public: images, favicons and other static assets
src
β”œβ”€β”€ assets: other assets using inside of components
β”œβ”€β”€ components: pieces of components consisting of pages
β”œβ”€β”€ content: mdx files for each post page
β”œβ”€β”€ lib: project libraries like data fetching or pagination
└── pages: page components managing by Next.js

References