Skip to content

Commit

Permalink
Added new project "Zen Guy" to projects list
Browse files Browse the repository at this point in the history
  • Loading branch information
adhirajcs committed Feb 4, 2025
1 parent 02b538b commit 1f41135
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
Binary file added public/Projects-images/zen-guy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 1 addition & 5 deletions src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ export default function RootLayout({ children }) {
return (
<html lang="en">
<head>
<link
rel="icon"
type="image/svg+xml"
href="/assets/icon.png"
/>
<link rel="icon" type="image/svg+xml" href="/assets/icon.png" />
</head>
<body>{children}</body>
</html>
Expand Down
16 changes: 13 additions & 3 deletions src/data/projects-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import {
SiPython,
SiShadcnui,
SiPostgresql,
SiSupabase

SiSupabase,
SiTypescript
} from "react-icons/si";
import { DiMysql } from "react-icons/di";

Expand All @@ -46,10 +46,20 @@ const toolIcons = {
Python: <SiPython />,
ShadCNUI: <SiShadcnui />,
PostgreSQL: <SiPostgresql />,
Supabase: <SiSupabase />
Supabase: <SiSupabase />,
TypeScript: <SiTypescript />
};

const projectslist = [
{
id: 8,
name: "Zen Guy",
description: "Zen Guy is an AI-powered Twitter bot that posts zen quotes and responds to comments.",
image: "/Projects-images/zen-guy.jpg",
tools: ["TypeScript"],
githubLink: "https://github.com/adhirajcs/Zen-Guy",
liveLink: null,
},
{
id: 7,
name: "HR System",
Expand Down

0 comments on commit 1f41135

Please sign in to comment.