From 49fff01018da018d5c3d2da067e7fe7d8a694aae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 14:31:47 +0530 Subject: [PATCH 01/20] Update page.tsx Fixed some font size issues --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a958795..3918252 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,7 +8,7 @@ import { div } from 'three/examples/jsm/nodes/math/OperatorNode.js' function BlogPage() { return (
-

+

All Blogs ({blogData.blogs.length})

From 2d40af2dfe0637f287098c5b48729e2725448094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 14:32:39 +0530 Subject: [PATCH 02/20] Update page.tsx Fixed some font size issues --- src/app/projects/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index f639aaf..0f49e13 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -7,7 +7,7 @@ import projectData from '@/data/projects.json' function ProjectPage() { return (
-

+

All Projects ({projectData.projects.length})

From 77329e7d5de81a629b8f80f227662ffc19daf861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 14:34:07 +0530 Subject: [PATCH 03/20] Update page.tsx Added section image and removed some a tag from the author name --- src/app/blog/posts/page.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/app/blog/posts/page.tsx b/src/app/blog/posts/page.tsx index 5f3eb53..acaf4ee 100644 --- a/src/app/blog/posts/page.tsx +++ b/src/app/blog/posts/page.tsx @@ -1,6 +1,7 @@ import { div } from 'three/examples/jsm/nodes/math/OperatorNode.js' import blogData from '@/data/blog.json' import { BackgroundBeams } from '@/components/ui/background-beams' +import Image from 'next/image' function blogPosts() { return ( @@ -8,7 +9,7 @@ function blogPosts() {

Creator's Blog @@ -38,7 +39,14 @@ function blogPosts() { {blogs.title}

-

{blogs.content}

+ {blogs.description} +

{blogs.content}

Author

- - {blogs.author} -

{blogs.role}

From 5ca09bf3812cfcad7985cfbdae9c2e4658180a5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 14:37:37 +0530 Subject: [PATCH 04/20] Update page.tsx Fixed indents --- src/app/blog/posts/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/blog/posts/page.tsx b/src/app/blog/posts/page.tsx index acaf4ee..71e9172 100644 --- a/src/app/blog/posts/page.tsx +++ b/src/app/blog/posts/page.tsx @@ -56,9 +56,7 @@ function blogPosts() { />

Author

-

- {blogs.author} -

+

{blogs.author}

{blogs.role}

From 96a38356f452898218e63cda93ae155610924021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:16:09 +0530 Subject: [PATCH 05/20] Update Blog.tsx Fixed the issue with the display in mobile devices --- src/components/Blog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Blog.tsx b/src/components/Blog.tsx index 186efbe..aec55e7 100644 --- a/src/components/Blog.tsx +++ b/src/components/Blog.tsx @@ -6,11 +6,11 @@ import { Tabs } from './ui/tabs' const Content = () => { return ( blogImage ) } From 2a9c518acffc3cebf7011685ce2ca4143a5c0758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:28:38 +0530 Subject: [PATCH 06/20] Update CHANGELOG.md Latest 15-05-2024 --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ccac43..9a71f55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ All notable changes to this project will be documented in this file. - Initial release of the package +## [1.0.9] - 2024-05-15 + +### Added + +- section images blog post page + +### Changed + +- text size for sm and md screens +- blog tab for sm ( mobile devices ) + +### Fixed + +- A lot of bugs and some errors + ## [1.0.7] - 2024-05-14 ### Added From b28fedffde02233d01d0f0bf269f6c0610a0dbda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:29:49 +0530 Subject: [PATCH 07/20] Update CHANGELOG.md Latest --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a71f55..6513fa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. - Initial release of the package -## [1.0.9] - 2024-05-15 +## [1.0.8] - 2024-05-15 ### Added From 3f84fa09cdba50f69fad2a69d760c6c6c24c1a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:30:11 +0530 Subject: [PATCH 08/20] Update README.md Latest --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 797ef28..3ea04a2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Creator's World](https://img.shields.io/badge/Creator's_World-Visit-ef629f.svg)](https://creatorsworld.vercel.app) [![GitHub](https://img.shields.io/badge/GitHub-creatorsworld-white.svg?logo=github)](https://github.com/nsgpriyanshu/creatorsworld) -[![Website Version](https://img.shields.io/badge/Website_Version-1.0.6-brightGreen.svg)](https://github.com/nsgpriyanshu/creatorsworld/releases/latest) +[![Website Version](https://img.shields.io/badge/Website_Version-1.0.8-brightGreen.svg)](https://github.com/nsgpriyanshu/creatorsworld/releases/latest) [![Discord](https://img.shields.io/discord/855781247480496130.svg?color=5865F2&logo=discord&logoColor=white)](https://discord.gg/7SAcEv7MDd) [![GitHub contributors](https://img.shields.io/github/contributors/nsgpriyanshu/creatorsworld.svg?color=crimson)](https://github.com/nsgpriyanshu/creatorsworld/graphs/contributors) [![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) From ad05e97e171fb4ac6e9abdd74f5800884f41d743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:30:42 +0530 Subject: [PATCH 09/20] Update package.json Latest --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 486407e..cf5ec8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "creatorsworld", - "version": "1.0.7", + "version": "1.0.8", "private": true, "scripts": { "dev": "next dev", From 056912fbd50e28406fab0756fea52a0f36018b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:44:58 +0530 Subject: [PATCH 10/20] Update README.md Fixed contributor badge and added contributor profile pic --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ea04a2..2cbaf7d 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,9 @@ Welcome to the official website of Creator's World! This website serves as the c ## Contributors -[![nsgpriyanshu](https://img.shields.io/badge/nsgpriyanshu-Developer-red.svg)](https://nsgpriyanshu.github.io) +nsgpriyanshu + +[![nsgpriyanshu](https://img.shields.io/badge/nsgpriyanshu-Developer.svg?color=f10a0a)](https://nsgpriyanshu.github.io) ## Thank You From 498a7d4f051c31d635ad18a3128caa6842da282c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Wed, 15 May 2024 19:45:58 +0530 Subject: [PATCH 11/20] Update CHANGELOG.md Added a log --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6513fa0..d6b2f88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,11 +11,13 @@ All notable changes to this project will be documented in this file. ### Added - section images blog post page +- Contributor pfp in README.md file ### Changed - text size for sm and md screens - blog tab for sm ( mobile devices ) +- Contributor badge in README.md file ### Fixed From 76e7cefee487743eff38573ba61cd2973f70031f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Thu, 16 May 2024 09:12:18 +0530 Subject: [PATCH 12/20] Update blog.json Fixed the author image path --- src/data/blog.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/blog.json b/src/data/blog.json index 532d858..f8b242d 100644 --- a/src/data/blog.json +++ b/src/data/blog.json @@ -3,7 +3,7 @@ { "id": "1", "author": "nsgpriyanshu", - "profilePicture": "/images/colourfull-pfp.jpg", + "profilePicture": "https://raw.githubusercontent.com/nsgpriyanshu/creatorsworld/main/public/images/colourfull-pfp.jpg", "role": "CEO", "date": "13-05-2024", "title": "Elevating Engagement: Exciting Updates in Our Discord Community!", @@ -18,7 +18,7 @@ { "id": "2", "author": "nsgpriyanshu", - "profilePicture": "/images/colourfull-pfp.jpg", + "profilePicture": "https://raw.githubusercontent.com/nsgpriyanshu/creatorsworld/main/public/images/colourfull-pfp.jpg", "role": "CEO", "date": "14-05-2024", "title": "Nurturing Safety and Moderation in Discord Communities", From e5235bb31c9d36805a84a976c191e2fed3439888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Thu, 16 May 2024 09:42:02 +0530 Subject: [PATCH 13/20] Update Navbar.tsx Added better code for enhancement also fixed the path of posts --- src/components/Navbar.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index adc22f0..2d6402d 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -4,6 +4,7 @@ import React, { useState } from 'react' import { HoveredLink, Menu, MenuItem, ProductItem } from './ui/navbar-menu' import { cn } from '@/utils/cn' import Link from 'next/link' +import blogData from '@/data/blog.json' function Navbar({ className }: { className?: string }) { const [active, setActive] = useState(null) @@ -28,9 +29,11 @@ function Navbar({ className }: { className?: string }) {
- Whats New - {/* Updated */} - Safety & Moderation + {blogData.blogs.map(blog => ( + + {blog.section} + + ))}
@@ -39,4 +42,4 @@ function Navbar({ className }: { className?: string }) { ) } -export default Navbar \ No newline at end of file +export default Navbar From e19551540201fff4512853040e74f71b196d61b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=8A=CA=82=C6=93=20PRIYANSHU?= <166146782+nsgpriyanshu@users.noreply.github.com> Date: Thu, 16 May 2024 09:45:51 +0530 Subject: [PATCH 14/20] Update page.tsx Fixed the path issues --- src/app/blog/posts/page.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/blog/posts/page.tsx b/src/app/blog/posts/page.tsx index 71e9172..bddb8be 100644 --- a/src/app/blog/posts/page.tsx +++ b/src/app/blog/posts/page.tsx @@ -20,7 +20,11 @@ function blogPosts() {
{blogData.blogs.map(blogs => ( -
+