Skip to content

Commit

Permalink
added project card
Browse files Browse the repository at this point in the history
  • Loading branch information
UDogg committed Mar 9, 2024
1 parent 3e5d3bf commit a4b3609
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/assets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ import threejs from "./tech/threejs.svg";
import Kube from "./tech/Kube.png";
import python from "./tech/python.png";
import java from "./tech/java.png";
import zig from "./tech/zig.jpg";
import ziggy from "./tech/ziggy.jpeg";

import meta from "./company/meta.png";
import shopify from "./company/shopify.png";
Expand Down Expand Up @@ -75,4 +77,6 @@ export {
java,
IOCL,
PSU,
zig,
ziggy
};
Binary file added src/assets/tech/zig.jpg
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 src/assets/tech/ziggy.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 34 additions & 2 deletions src/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import {
java,
IOCL,
PSU,
zig,
ziggy
} from "../assets";
import a from "../assets/gene.jpeg";
import b from "../assets/o.jpeg";
Expand Down Expand Up @@ -95,8 +97,8 @@ const technologies = [
icon: tailwind,
},
{
name: "Node JS",
icon: nodejs,
name: "Java",
icon: java,
},
{
name: "MongoDB",
Expand Down Expand Up @@ -350,6 +352,36 @@ const projects = [
image: apis,
source_code_link: "https://github.com/UDogg/qapply-frontend",
},
{
name: "qApply backend(testing) and frontend",
description:
"I learned how to use Zig and build a simple calculator using it",
tags: [
{
name: "Zig",
color: "blue-text-gradient",
},
],
image: zig,
source_code_link: "https://github.com/UDogg/ziggy",
},
{
name: "Springboot, Angular full stack application",
description:
"I learned how to use Springboot. I also learned how to make APIs, and test them using Postman. First draft frontend was made using Angular",
tags: [
{
name: "TypeScript",
color: "blue-text-gradient",
},
{
name: "Java",
color: "orange-text-gradient",
},
],
image: java,
source_code_link: "https://github.com/UDogg/springang",
},
];

export { services, technologies, experiences, testimonials, projects };

0 comments on commit a4b3609

Please sign in to comment.