From 45572f3c91db51b003c6c6a6fc7bfcc01b66750d Mon Sep 17 00:00:00 2001 From: VIGNESH S NAIK Date: Sun, 24 Nov 2024 15:36:23 +0530 Subject: [PATCH] remove : old project ui --- src/components/Modal.astro | 146 ----------------------- src/components/Projects.astro | 215 ---------------------------------- 2 files changed, 361 deletions(-) delete mode 100644 src/components/Modal.astro delete mode 100644 src/components/Projects.astro diff --git a/src/components/Modal.astro b/src/components/Modal.astro deleted file mode 100644 index 9e16cb0..0000000 --- a/src/components/Modal.astro +++ /dev/null @@ -1,146 +0,0 @@ ---- -import { string } from "astro/zod"; -import Pill from "./Pill.astro"; -import Projects from "./Projects.astro"; -const { id, open, project } = Astro.props; ---- - - -
- -
- - diff --git a/src/components/Projects.astro b/src/components/Projects.astro deleted file mode 100644 index ccbbaa4..0000000 --- a/src/components/Projects.astro +++ /dev/null @@ -1,215 +0,0 @@ ---- -const projects = [ - { - id: 1, - title: "VizCode", - description: - "An online compiler system with real-time data structure visualization", - content: - "Developing an online compiler system supporting multiple programming languages, enabling secure code execution with sandboxing. Integrating a real-time data structure visualizer to facilitate code understanding by illustrating changes in data structures such as arrays, linked lists, trees, and graphs.", - period: { from: "July 2024", to: "Present" }, - completed: false, - links: [], - technologies: ["React", "Node.js", "Express.js", "Docker", "CodeMirror"], - }, - { - id: 2, - title: "Portfolio Website", - description: "A simple portfolio website built using Astro framework.", - content: - "This webiste is built using Astro framework and deployed Github Pages. A simple static website built to showcase my projects, projects and my interests. ", - period: { from: "June 2024", to:"June 2024" }, - completed: true, - links: [ - { - title: "repo", - url: "https://github.com/vigneshsnaik/vigneshsnaik.github.io", - }, - { title: "website", url: "https://vigneshsnaik.github.io" }, - ], - technologies: ["Astro", "CSS3"], - }, - { - id: 3, - title: "xTend", - description: "An automated Ambulance summoning device", - content: - "It is an ambulance summoning device for health emergencies. Health emergency detection using Pulse-oximeter sensor and a medical history record system. Built during Young Innovators program (K-DISC) '22 and Samsung Solve for Tomorrow '22. Used Arduino, Flutter, NodeMCU, Firebase API and sensors. It is a device that can be installed in a car and can be used to summon an ambulance in case of an emergency. It uses a heart rate sensor to detect the heart rate of the driver and if it detects a heart attack, it automatically sends a message to the nearest hospital and the ambulance is dispatched.", - period: { from: "September 2022", to: "December 2023" }, - completed: true, - links: [], - technologies: ["Arduino", "Flutter", "NodeMCU", "Firebase API", "Sensors"], - }, - { - id: 4, - title: "Fresher Registration Portal", - description: "A portal for registering freshers for the college", - content: - "A portal for registering freshers for the college. Built using MERN stack. It is a portal for registering freshers for the college. It has a login system for the admin and the students. The admin can add, delete and update the students. The students can register themselves and download the registration and declaration forms as a PDF file after registration.", - period: { from: "August 2023", to: "August 2023" }, - completed: true, - links: [{ title: "website", url: "http://register.mec.ac.in/" }], - technologies: ["React", "NodeJS", "ExpressJS", "MongoDB", "Bootstrap"], - }, - { - id: 5, - title: "Tokenization of Physical Assets", - description: - "An application for tokenizing physical assets and trading them", - content: - "An application for tokenizing physical assets and trading them. It is an application for tokenizing physical assets and trading them. It has a login system for the admin and the users. The admin can add, delete and update the assets. The users can buy and sell the assets. The Government can view the assets and the transactions, helping them to keep track of the assets as well as detecting tax evasions.", - period: { from: "September 2023", to: "April 2024" }, - completed: true, - links: [ - { - title: "Front-End repo", - url: "https://github.com/vigneshsnaik/dbms-miniproject-frontend", - }, - { - title: "Webhooks repo", - url: "https://github.com/vigneshsnaik/dbms-moralis-integration", - }, - { - title: "Smart Contract repo", - url: "https://github.com/Arshad-3/dbms-web3-contract", - }, - ], - technologies: [ - "React", - "NodeJS", - "ExpressJS", - "Supabase", - "Material UI", - "Vite", - ], - }, - { - id: 6, - title: "Zenith", - description: - "A fintech app that tracks your expenses and helps to plan your budget", - content: - "This comprehensive fintech app simplifies the path to financial success for people of all ages. It acknowledges the unique challenges faced by today's youth and provides a user-friendly platform for setting and achieving their financial requirements. Users can easily input their desired financial objectives, prioritise them, and share details about their monthly income or allowances. With this app, we empower individuals to take control of their financial future, just as older generations plan for their retirement built during 24 hour hackathon Mechack '23", - period: { from: "October 2023", to: "October 2023" }, - completed: true, - links: [ - { - title: "Front-End repo", - url: "https://github.com/hacksh4w/zenith-frontend/", - }, - { - title: "Back-End repo", - url: "https://github.com/alllenshibu/mechack", - }, - ], - technologies: [ - "React", - "NodeJS", - "ExpressJS", - "Supabase", - "Material UI", - "Vite", - ], - }, -]; -import Modal from "./Modal.astro"; ---- - -
-

Projects

-
- { - projects.map((project) => ( -
-

{project.title}

- -

- {project.description} - more -

- -
- )) - } -
-
-