diff --git a/src/assets/index.js b/src/assets/index.js index f0aea35..b47ed35 100644 --- a/src/assets/index.js +++ b/src/assets/index.js @@ -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"; @@ -75,4 +77,6 @@ export { java, IOCL, PSU, + zig, + ziggy }; diff --git a/src/assets/tech/zig.jpg b/src/assets/tech/zig.jpg new file mode 100644 index 0000000..96e4b06 Binary files /dev/null and b/src/assets/tech/zig.jpg differ diff --git a/src/assets/tech/ziggy.jpeg b/src/assets/tech/ziggy.jpeg new file mode 100644 index 0000000..cd9f53a Binary files /dev/null and b/src/assets/tech/ziggy.jpeg differ diff --git a/src/constants/index.js b/src/constants/index.js index 5c9618c..6f8b7c7 100644 --- a/src/constants/index.js +++ b/src/constants/index.js @@ -26,6 +26,8 @@ import { java, IOCL, PSU, + zig, + ziggy } from "../assets"; import a from "../assets/gene.jpeg"; import b from "../assets/o.jpeg"; @@ -95,8 +97,8 @@ const technologies = [ icon: tailwind, }, { - name: "Node JS", - icon: nodejs, + name: "Java", + icon: java, }, { name: "MongoDB", @@ -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 };