Skip to content

Commit

Permalink
Add code for blogs
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinNagpal committed Feb 21, 2025
1 parent 5261aa3 commit bbaf8be
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions insights-ui/blogs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Some naming conventions to follow
- file names should be lowercase and separated by hyphens for example `my-file-name.md`
- folder names should be lowercase and separated by hyphens for example `my-folder-name`
- image names should be lowercase and separated by hyphens for example `my-image-name.png`
- images should be present in the `images` folder and in a nested folder with `same fodler name` as the name of blog markdown file's name

# Adding a new blog
## Top Metadata Fields
- id: A unique identifier for the blog post. It should be a hyphen-separated lowercase string.
- slug: The (unique) URL slug for the blog post. It should be a hyphen-separated lowercase string.
- description: A brief description of the blog post which will be shown in the blog card.
- date: The date of the blog post in the format "Month DD, YYYY". This is used for display purposes only.
- datetime: The date of the blog post in the format "YYYY-MM-DD". This is used for sorting purposes.
- category: An object containing the title and href of the blog post's category.
- seoKeywords: An array of keywords for SEO purposes. for example `["keyword1", "keyword2", "Key word 3"]`
- seoImage: The path to the image that will be used as the SEO image for the blog post.
- bannerImage: The path to the image that will be used as the banner image for the blog post.

Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
id: 'crowdfunding-analysis'
title: 'Crowdfunding Analysis'
href: 'crowdfunding-analysis'
slug: 'crowdfunding-analysis'
description: 'Discover how our Crowdfunding Analysis tool helps investors evaluate startups using data-driven insights on financial health, market opportunity, traction, and execution speed.'
date: 'Feb 20, 2025'
datetime: '2025-02-20'
category: { title: 'Investment & Finance', href: '#' }
category: { title: 'Investment & Finance', slug: 'investment-and-finance' }
image: '/images/crowdfunding-analysis.jpg'
---

Expand Down

0 comments on commit bbaf8be

Please sign in to comment.