Closed SureshPradhana closed 3 months ago
@SureshPradhana is attempting to deploy a commit to the devvsakib's projects Team on Vercel.
A member of the Team first needs to authorize it.
The recent changes introduce a new blogging feature to the application, allowing users to access, read, and navigate blog posts seamlessly. This includes components for listing blogs and displaying individual entries, along with enhancements to the header for easier navigation. The implementation utilizes React hooks for fetching Markdown content, ensuring a user-friendly experience with effective error handling and interactive elements.
Files | Change Summary |
---|---|
public/blogposts/How_to_Contribute_to_Open_Source_on_GitHub_Forking_and_Making_Your_First_Pull_Request.md |
New guide on open-source contributions, detailing forking, cloning, branching, and making pull requests. |
public/blogposts/index.json |
New JSON file for managing blog posts, facilitating future expansions. |
src/components/Header/Header.jsx |
Added "Blogs" navigation item with an icon for improved access to the blog section. |
src/main.jsx |
Introduced new routes for listing blogs (/blogs ) and displaying individual blog details (/blogs/:slug ), enhancing content organization. |
src/pages/blogs/blog/index.jsx |
Created BlogDetail component to fetch and render blog content in Markdown format, including a dynamic table of contents and error handling. |
src/pages/blogs/index.jsx |
Introduced BlogsList component to fetch and display a list of blog posts from JSON, complete with error handling and dynamic linking. |
sequenceDiagram
participant User
participant Header
participant BlogsList
participant BlogDetail
participant API
User->>Header: Click on Blogs
Header->>BlogsList: Navigate to Blogs
BlogsList->>API: Fetch blog posts
API-->>BlogsList: Return blog posts
BlogsList->>User: Display list of blog posts
User->>BlogsList: Click on a blog post
BlogsList->>BlogDetail: Navigate to BlogDetail
BlogDetail->>API: Fetch blog content
API-->>BlogDetail: Return blog content
BlogDetail->>User: Display blog content
🐇 In the garden of code, we burrow and play,
With blogs now in bloom, brightening the way.
Forks and pull requests, oh what a delight!
A hop into open source, shining so bright!
Each click a new tale, each blog a new quest,
Join in the fun, it's the coder's best fest! 🌼
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
github-error-solve | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Aug 5, 2024 1:08am |
There are an error.
and I don't think it makes much difference as our doc page has some content.
Are you saying that the blogs
route is redundant, or that the blog written there is the same as the one in the docs?
It runs perfectly locally, so the problem might be due to differences in library handling or compatibility on Vercel.
230
Summary by CodeRabbit
New Features
Bug Fixes
Documentation