Skip to content

Commit

Permalink
[FEAT] - Adding new projects
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniloNicacio committed Feb 12, 2024
1 parent 46a07d4 commit e80c8a2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion app/components/ProjectsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,28 @@ const projectsData = [
},
{
id: 2,
title: "Discord Music Bot",
description: "A Discord bot that plays songs from YouTube",
image: "/images/projects/discord-bot.png",
tag: ["All", "Web", "Python"],
gitUrl: "https://github.com/DaniloNicacio/discord-bot",
previewUrl: "https://github.com/DaniloNicacio/discord-bot"
},
{
id: 3,
title: "CuteBotYTD",
description: "A Discord bot that download videos and send it to the user",
image: "/images/projects/telegram-bot.png",
tag: ["All", "Python"],
gitUrl: "https://github.com/DaniloNicacio/cutebotytd",
previewUrl: "https://t.me/cuteytb_bot"
},
{
id: 4,
title: "Work in Progress",
description: "This is just a placeholder",
image: "/images/projects/work-in-progress.png",
tag: ["All", "Web"],
tag: ["All", "Web", "JavaScript","Python"],
gitUrl: "/",
previewUrl: "/"
}
Expand Down Expand Up @@ -61,6 +79,11 @@ const ProjectsSection = () =>{
name="JavaScript"
isSelected={tag === "JavaScript"}
/>
<ProjectTag
onClick={handleTagChange}
name="Python"
isSelected={tag === "Python"}
/>
</div>
<ul ref={ref} className="grid md:grid-cols-3 gab-8 md:gap-12">
{filteredProjects.map((project, index) => (
Expand Down
Binary file added public/images/projects/discord-bot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/projects/telegram-bot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e80c8a2

Please sign in to comment.