diff --git a/.woodpecker.yml b/.woodpecker.yml index ed91729..1553b0b 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,124 +1,123 @@ steps: - build: - image: node:22 - commands: - - npm ci - - npm run build - - echo "VERSION=$(cat version.txt)" > .env + build: + image: node:22 + commands: + - npm ci + - npm run build + - echo "VERSION=$(cat version.txt)" > .env - clear-from-host: - image: appleboy/drone-ssh - settings: - host: - from_secret: ssh_host - username: - from_secret: ssh_username - key: - from_secret: ssh_key - port: 2332 - script: - - cd /home/mnisyif/docker-containers/mnisyif/frontend - - rm -rf data index-*.js index-*.css logos papers pp projects - - find . -maxdepth 1 -type f -delete - - echo "Target directory cleared, resumes folder preserved" + clear-from-host: + image: appleboy/drone-ssh + settings: + host: + from_secret: ssh_host + username: + from_secret: ssh_username + key: + from_secret: ssh_key + port: 2332 + script: + - cd /home/mnisyif/docker-containers/mnisyif/frontend + - rm -rf data index-*.js index-*.css logos papers pp projects + - find . -maxdepth 1 -type f -delete + - echo "Target directory cleared, resumes folder preserved" copy-to-host: - image: appleboy/drone-scp - settings: - host: - from_secret: ssh_host - username: - from_secret: ssh_username - key: - from_secret: ssh_key - port: 2332 - target: /home/mnisyif/docker-containers/mnisyif/frontend - source: - - dist/ - - nginx.conf - - version.txt + image: appleboy/drone-scp + settings: + host: + from_secret: ssh_host + username: + from_secret: ssh_username + key: + from_secret: ssh_key + port: 2332 + target: /home/mnisyif/docker-containers/mnisyif/frontend + source: + - dist/ + - nginx.conf + - version.txt + deploy: + image: appleboy/drone-ssh + settings: + host: + from_secret: ssh_host + username: + from_secret: ssh_username + key: + from_secret: ssh_key + port: 2332 + script: + - cd /home/mnisyif/docker-containers/mnisyif/frontend + - VERSION=$(cat version.txt) + - echo "Nginx configuration:" + - cat nginx.conf + - echo "Contents of dist directory:" + - ls -la dist + # Stop and remove the existing container if it exists + - docker stop frontend || true + - docker rm frontend || true + # Run the new container with the current version, mounting the files + - > + docker run -d --name frontend -p 5173:80 + -v /home/mnisyif/docker-containers/mnisyif/frontend/dist:/usr/share/nginx/html:ro + -v /home/mnisyif/docker-containers/mnisyif/frontend/nginx.conf:/etc/nginx/nginx.conf:ro + nginx:alpine + # Tag the running container with the version + - docker tag nginx:alpine frontend:$VERSION + - echo "Deployment completed" - deploy: - image: appleboy/drone-ssh - settings: - host: - from_secret: ssh_host - username: - from_secret: ssh_username - key: - from_secret: ssh_key - port: 2332 - script: - - cd /home/mnisyif/docker-containers/mnisyif/frontend - - VERSION=$(cat version.txt) - - echo "Nginx configuration:" - - cat nginx.conf - - echo "Contents of dist directory:" - - ls -la dist - # Stop and remove the existing container if it exists - - docker stop frontend || true - - docker rm frontend || true - # Run the new container with the current version, mounting the files - - > - docker run -d --name frontend -p 5173:80 - -v /home/mnisyif/docker-containers/mnisyif/frontend/dist:/usr/share/nginx/html:ro - -v /home/mnisyif/docker-containers/mnisyif/frontend/nginx.conf:/etc/nginx/nginx.conf:ro - nginx:alpine - # Tag the running container with the version - - docker tag nginx:alpine frontend:$VERSION - - echo "Deployment completed" + confirm-deployment: + image: appleboy/drone-ssh + settings: + host: + from_secret: ssh_host + username: + from_secret: ssh_username + key: + from_secret: ssh_key + port: 2332 + script: + - cd /home/mnisyif/docker-containers/mnisyif/frontend + - VERSION=$(cat version.txt) + - echo "Confirming deployment for version: $VERSION" + - docker ps -a + - if ! docker ps | grep -q frontend-$VERSION; then + echo "Container failed to start"; + docker logs frontend-$VERSION; + exit 1; + fi + - echo "Container is running, checking Nginx configuration..." + - docker exec frontend-$VERSION nginx -t || { echo "Nginx configuration test failed"; exit 1; } + - echo "Listing contents of /usr/share/nginx/html" + - docker exec frontend-$VERSION ls -la /usr/share/nginx/html + - echo "Listing contents of /usr/share/nginx/html/resumes" + - docker exec frontend-$VERSION ls -la /usr/share/nginx/html/resumes || echo "Resumes directory not found" + - echo "Checking HTTP response..." + - curl -I http://localhost:5173 || { echo "HTTP request failed"; exit 1; } + - echo "Deployment confirmed successfully" - confirm-deployment: - image: appleboy/drone-ssh - settings: - host: - from_secret: ssh_host - username: - from_secret: ssh_username - key: - from_secret: ssh_key - port: 2332 - script: - - echo "Verifying deployment..." - # Verify the container is running - - docker ps | grep frontend || { echo "Container failed to start"; exit 1; } - # Display container logs - - docker logs frontend - # Test Nginx configuration - - docker exec frontend nginx -t - # Check Nginx process - - docker exec frontend ps aux | grep nginx - # Check contents of /usr/share/nginx/html in the container - - docker exec frontend ls -la /usr/share/nginx/html - # Perform a simple HTTP request to check if the server is responding - - curl -I http://localhost:5173 || { echo "HTTP request failed"; exit 1; } - - echo "Deployment confirmed successfully" + cleanup: + image: appleboy/drone-ssh + settings: + host: + from_secret: ssh_host + username: + from_secret: ssh_username + key: + from_secret: ssh_key + port: 2332 + script: + - echo "Performing cleanup..." + - docker system prune -f --volumes + - > + for img in $(docker images frontend --format "{{.Tag}}" | grep -v $(cat /home/mnisyif/docker-containers/mnisyif/frontend/version.txt)); do + docker rmi frontend:$img || true; + done + - echo "Cleanup completed" - cleanup: - image: appleboy/drone-ssh - settings: - host: - from_secret: ssh_host - username: - from_secret: ssh_username - key: - from_secret: ssh_key - port: 2332 - script: - - echo "Performing cleanup..." - - docker system prune -f --volumes - - > - for img in $(docker images frontend --format "{{.Tag}}" | grep -v $(cat /home/mnisyif/docker-containers/mnisyif/frontend/version.txt)); do - docker rmi frontend:$img || true - done - - echo "Cleanup completed" - -# trigger: -# branch: -# - master -# event: -# - push - -when: - - branch: master - event: push +trigger: + branch: + - master + event: + - push diff --git a/index.html b/index.html index b0b7d4c..c4e0c9c 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + Murtadha Nisyif | Portfolio diff --git a/public/assets/data/projectsData.json b/public/assets/data/projectsData.json index cfc9097..4d0bbd4 100644 --- a/public/assets/data/projectsData.json +++ b/public/assets/data/projectsData.json @@ -2,147 +2,52 @@ { "id": 1, "title": "PaperKeypad", - "category": ["Misc"], + "category": "Misc", "images": ["/assets/projects/keypad0.jpg"], "description": "Ever need to use a keyboard, but you got only your phone and a printer, PaperKeypad is a keypad that is made of paper.", "technologies": ["Java", "JavaFX", "Android Studio"], "features": ["Mobile sensor manipulation", "Responsive design"], - "githubLink": "https://github.com/betato/PaperKeypad", - "date": 2019 + "githubLink": "https://github.com/betato/PaperKeypad" }, { "id": 2, "title": "StonkBot", - "category": ["Misc"], + "category": "Misc", "images": ["/assets/projects/stonkbot0.jpg"], "description": "The fear of losing money is common among first-time and seasoned investors alike. This inspired the creation of Stonk Bot, a fantasy trading platform that can be implemented in Discord.", "technologies": ["Python", "VS Code", "Matplotlib", "Financial Modeling Prep API", "Discord API"], "features": ["Buy shares", "Sell shares", "View stock information", "View personal portfolio", "View leaderboard"], "githubLink": "https://github.com/aidanbruneel/stonkbot", - "liveLink": "https://discord.com/invite/tQNkk7v7R8", - "date": 2022 + "liveLink": "https://discord.com/invite/tQNkk7v7R8" }, { "id": 3, "title": "Car Model Classification", - "category": ["Machine Learning"], + "category": "Machine Learning", "images": ["/assets/projects/carmodelclass0.png"], "description": "Developing a computer vision application to identify a vehicle model from a given image is an interesting and challenging problem to solve. Challenge of this problem is that different vehicle models can appear very similar and the same vehicle can look different and hard to identify depending on lighting conditions, angle and many other factors. In this project, I decided to train a Convolutional Neural Network(CNN) to generate a model that can identify a given vehicle model.", "technologies": ["Python", "Tensorflow", "CNN", "Deep learning", "ResNet", "EfficientNet", "Stanford Cars Dataset"], "features": ["Buy shares", "Sell shares", "View stock information", "View personal portfolio", "View leaderboard"], - "githubLink": "https://github.com/mnisyif/carClassificationModel", - "date": 2022 + "githubLink": "https://github.com/mnisyif/carClassificationModel" }, { "id": 4, "title": "Memory Allocation Simulations", - "category": ["Misc"], + "category": "Misc", "images": ["/assets/projects/memallc0.png"], "description": "This implementation uses doubly linked list to simulate memory allocation given 4 different memory management algorithms", "technologies": ["C", "CMake", "Data structures"], "features": ["First fit", "Best fit", "Next fit", "Worst fit"], - "githubLink": "https://github.com/mnisyif/MemoryAllocationAlgorithm/tree/main", - "date": 2022 + "githubLink": "https://github.com/mnisyif/MemoryAllocationAlgorithm/tree/main" }, { "id": 5, - "title": "Transformer-based Semantic Transcoding", - "category": ["Machine Learning"], - "images": ["/assets/projects/semantic01.png"], - "description": "Developed PyTorch models for E2E semantic transcoding, deployed on Xilinx SoC boards using Vitis AI™", - "technologies": ["PyTorch", "Vitis AI", "Xilinx SoC", "Machine Learning", "C++"], - "features": ["E2E semantic transcoding", "Hardware acceleration", "SoC deployment", "C++ deployment"], - "githubLink": "https://github.com/mnisyif/masters-research", - "date": 2024 - }, - { - "id": 6, - "title": "Clean Architecture C# Backend", - "category": ["Web Development"], - "images": ["/assets/projects/clean_architecture_backend.png"], - "description": "Engineered a scalable portfolio website backend using C#, adhering to Clean Architecture principles and implementing CI/CD pipeline for efficient deployment", - "technologies": ["C#", "Clean Architecture", "CI/CD", "REST Api"], - "features": ["Scalable backend", "Clean Architecture implementation", "Automated deployment", "RESTful"], - "githubLink": "https://github.com/mnisyif/portfolio-backend", - "date": 2024 - }, - { - "id": 7, - "title": "DevOps Homelab Maestro", - "category": ["DevOps"], - "images": ["/assets/projects/homelab_maestro.png"], - "description": "Orchestrating a robust homelab environment with Docker containers, Kubernetes clusters, Ceph distributed storage, and CI/CD pipelines for seamless application deployment", - "technologies": ["Docker", "Kubernetes", "Ceph", "CI/CD"], - "features": ["Containerized applications", "Orchestration", "Distributed storage", "Automated deployment"], - "date": 2023 - }, - { - "id": 8, - "title": "RL Dynamic Noise Cancelling", - "category": ["Machine Learning"], - "images": ["/assets/projects/noise_cancelling.png"], - "description": "Implemented real-time Automatic Noise Filtering using Reinforcement Learning and Dynamic Sparse Training in PyTorch", - "technologies": ["PyTorch", "Reinforcement Learning", "Dynamic Sparse Training", "Jupyter Notebooks"], - "features": ["Real-time filtering", "Automatic noise cancellation", "Sparse training", "Interactive development"], - "githubLink": "https://github.com/mnisyif/rl-noise-cancelling", - "date": 2023 - }, - { - "id": 9, - "title": "Real-Time Text-to-Braille", - "category": ["Embedded Systems"], - "images": ["/assets/projects/braille01.jpg","/assets/projects/braille02.jpg"], - "description": "Built a Raspberry Pi device for real-time image-to-Braille conversion, enhancing accessibility for the deaf-blind community", - "technologies": ["Raspberry Pi", "Image Processing", "OCR", "Python"], - "features": ["Real-time conversion", "Low-cost OCR algorithm", "Lookup table for Braille conversion", "Accessibility enhancement"], - "date": 2023 - }, - { - "id": 10, - "title": "ZAMAZ UTI Diagnosis", - "category": ["Embedded Systems"], - "images": ["/assets/projects/zamaz01.jpg","/assets/projects/zamaz02.jpg"], - "description": "Developed a Raspberry Pi-based system for automated urine test analysis, achieving 16x faster results than standard methods", - "technologies": ["Raspberry Pi", "Python", "Image Processing", "Healthcare Technology"], - "features": ["Automated analysis", "Pixel-based concentration calculation", "E. Coli and Staph bacteria detection", "Rapid results"], - "date": 2022 - }, - { - "id": 11, - "title": "HAM10K Image Classification with Deep Networks", - "category": ["Machine Learning"], - "images": ["/assets/projects/ham10k_classification.png"], - "description": "Developed and compared three deep learning models (MLP+PCA, DCNN, RegNetY-320) for skin cancer classification using the HAM10000 dataset, achieving 96.89% accuracy with RegNetY-320", - "technologies": ["PyTorch", "Deep Learning", "CNN", "RegNet", "PCA", "Python"], - "features": ["Multi-model comparison", "Data balancing and augmentation", "High accuracy classification", "Medical image analysis"], - "githubLink": "https://github.com/nithinprasad94/ENGG6600_DL_Final_Project", - "liveLink":"https://youtu.be/zHbRmIn7gPo", - "date": 2023 - }, - { - "id": 12, - "title": "Heart Disease Prediction Web App", - "category": ["Machine Learning", "Web Development"], - "images": ["/assets/projects/heartdis01.png"], - "description": "Developed a Flask-based web application that predicts the likelihood of heart disease using machine learning models. The app processes user input, applies feature encoding and scaling, and provides instant predictions.", - "technologies": [ - "Python", - "Flask", - "NumPy", - "Scikit-learn", - "Pickle", - "HTML", - "Machine Learning" - ], - "features": [ - "User-friendly web interface for input", - "Real-time prediction using pre-trained model", - "Feature encoding and scaling", - "Integration of multiple ML preprocessing steps", - "Handling of both categorical and numerical inputs" - ], - "githubLink": "https://github.com/zeyadghulam/engg6600-assignment3", - "date":2023 - } - + "title": "Portfolio Website", + "category": "Web Development", + "images": ["/assets/projects/memallc0.png"], + "description": "This implementation uses doubly linked list to simulate memory allocation given 4 different memory management algorithms", + "technologies": ["C", "CMake", "Data structures"], + "features": ["First fit", "Best fit", "Next fit", "Worst fit"], + "githubLink": "https://github.com/mnisyif/MemoryAllocationAlgorithm/tree/main" + } ] diff --git a/public/assets/logos/favicon.png b/public/assets/logos/favicon.png deleted file mode 100644 index 97af622..0000000 Binary files a/public/assets/logos/favicon.png and /dev/null differ diff --git a/public/assets/logos/favicon.svg b/public/assets/logos/favicon.svg deleted file mode 100644 index f1f5a57..0000000 --- a/public/assets/logos/favicon.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - diff --git a/public/assets/pp/pp.jpg b/public/assets/pp/pp.jpg index 3226c9b..1f57648 100644 Binary files a/public/assets/pp/pp.jpg and b/public/assets/pp/pp.jpg differ diff --git a/public/assets/projects/braille01.jpg b/public/assets/projects/braille01.jpg deleted file mode 100644 index 5bb6647..0000000 Binary files a/public/assets/projects/braille01.jpg and /dev/null differ diff --git a/public/assets/projects/braille02.jpg b/public/assets/projects/braille02.jpg deleted file mode 100644 index 8454940..0000000 Binary files a/public/assets/projects/braille02.jpg and /dev/null differ diff --git a/public/assets/projects/heartdis01.png b/public/assets/projects/heartdis01.png deleted file mode 100644 index 31f095d..0000000 Binary files a/public/assets/projects/heartdis01.png and /dev/null differ diff --git a/public/assets/projects/semantic01.png b/public/assets/projects/semantic01.png deleted file mode 100644 index e9ec5fa..0000000 Binary files a/public/assets/projects/semantic01.png and /dev/null differ diff --git a/public/assets/projects/zamaz01.jpg b/public/assets/projects/zamaz01.jpg deleted file mode 100644 index bf7df69..0000000 Binary files a/public/assets/projects/zamaz01.jpg and /dev/null differ diff --git a/public/assets/projects/zamaz02.jpg b/public/assets/projects/zamaz02.jpg deleted file mode 100644 index 021be5b..0000000 Binary files a/public/assets/projects/zamaz02.jpg and /dev/null differ diff --git a/public/assets/resumes/Murtadha.pdf b/public/assets/resumes/Murtadha.pdf new file mode 100644 index 0000000..afa9fbd Binary files /dev/null and b/public/assets/resumes/Murtadha.pdf differ diff --git a/src/App.jsx b/src/App.jsx index a79b249..5c030a1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -13,8 +13,6 @@ import InfoSection from "./shared/components/info/InfoSection"; import styles from "./App.module.css"; -import { fetchEducationData, fetchExperienceData, fetchPersonalData, fetchProjectsData } from "./utils/dataFetcher"; - function App() { const [educationData, setEducationData] = useState([]); const [experienceData, setExperienceData] = useState([]); @@ -22,21 +20,35 @@ function App() { const [personalData, setPersonalData] = useState([]); useEffect(() => { - const fetchData = async () => { - const education = await fetchEducationData(); - setEducationData(education); - - const experience = await fetchExperienceData(); - setExperienceData(experience); - - const projects = await fetchProjectsData(); - setProjectsData(projects); - - const personal = await fetchPersonalData(); - setPersonalData(personal); + const fetchEducationData = async () => { + const response = await fetch("/assets/data/educationData.json"); + const data = await response.json(); + setEducationData(data); }; - - fetchData(); + + const fetchExperienceData = async () => { + const response = await fetch("/assets/data/experienceData.json"); + const data = await response.json(); + setExperienceData(data); + }; + + const fetchProjectsData = async () => { + const response = await fetch("/assets/data/projectsData.json"); + const data = await response.json(); + setProjectsData(data); + }; + + const fetchPersonalData = async () => { + const response = await fetch("/assets/data/personalData.json"); + const data = await response.json(); + setPersonalData(data); + // console.log(data) + }; + + fetchEducationData(); + fetchExperienceData(); + fetchProjectsData(); + fetchPersonalData(); }, []); return ( diff --git a/src/components/projects/Projects.jsx b/src/components/projects/Projects.jsx index bba1c0c..6d55663 100644 --- a/src/components/projects/Projects.jsx +++ b/src/components/projects/Projects.jsx @@ -17,16 +17,13 @@ function Projects({ title, data }) { }, []); const categories = useMemo(() => { - const cats = new Set(data.flatMap((project) => project.category)); + const cats = new Set(data.map((project) => project.category)); return ["All", ...Array.from(cats)]; }, [data]); - const sortedAndFilteredProjects = useMemo(() => { - let filteredProjects = activeFilter === "All" - ? data - : data.filter((project) => project.category.includes(activeFilter)); - - return filteredProjects.sort((a, b) => b.date - a.date); + const filteredProjects = useMemo(() => { + if (activeFilter === "All") return data; + return data.filter((project) => project.category === activeFilter); }, [data, activeFilter]); const handleFilterClick = (category) => { @@ -44,23 +41,14 @@ function Projects({ title, data }) {

{title}

{categories.map((category) => ( - ))}
- {sortedAndFilteredProjects.map((project) => ( - + {filteredProjects.map((project) => ( + ))}
{selectedProject && } @@ -68,4 +56,4 @@ function Projects({ title, data }) { ); } -export default Projects; \ No newline at end of file +export default Projects; diff --git a/src/components/projects/projectCard/ProjectCard.jsx b/src/components/projects/projectCard/ProjectCard.jsx index efecf1c..3a967b8 100644 --- a/src/components/projects/projectCard/ProjectCard.jsx +++ b/src/components/projects/projectCard/ProjectCard.jsx @@ -1,44 +1,7 @@ -import React, { useRef, useEffect, useState } from "react"; +import React from "react"; import styles from "./ProjectCard.module.css"; function ProjectCard({ project, onClick, className }) { - const [truncatedDescription, setTruncatedDescription] = useState(project.description); - const descriptionRef = useRef(null); - - const formatList = (items) => { - return items.map((item, index, arr) => ( - - {item} - {index < arr.length - 1 && , } - - )); - }; - - useEffect(() => { - const truncateDescription = () => { - const element = descriptionRef.current; - if (!element) return; - - const maxHeight = parseInt(window.getComputedStyle(element).lineHeight) * 4; // 4 lines - let text = project.description; - element.textContent = text; - - while (element.scrollHeight > maxHeight && text.length > 0) { - text = text.slice(0, -1); - element.textContent = text + '...'; - } - - setTruncatedDescription(element.textContent); - }; - - truncateDescription(); - window.addEventListener('resize', truncateDescription); - - return () => { - window.removeEventListener('resize', truncateDescription); - }; - }, [project.description]); - return (
onClick(project)}>
@@ -46,17 +9,11 @@ function ProjectCard({ project, onClick, className }) {

{project.title}

-
- {formatList(project.category)} -
-

{truncatedDescription}

-
- {formatList(project.technologies)} -
- {/*

{project.date}

*/} +

{project.category}

+

{project.description}

); } -export default ProjectCard; \ No newline at end of file +export default ProjectCard; diff --git a/src/components/projects/projectCard/ProjectCard.module.css b/src/components/projects/projectCard/ProjectCard.module.css index 29f06ad..0431321 100644 --- a/src/components/projects/projectCard/ProjectCard.module.css +++ b/src/components/projects/projectCard/ProjectCard.module.css @@ -5,10 +5,9 @@ overflow: hidden; transition: transform 0.3s ease; cursor: pointer; + height: 450px; /* Fixed height for the card */ display: flex; flex-direction: column; - height: auto; - min-height: 450px; } .card:hover { @@ -33,6 +32,7 @@ display: flex; flex-direction: column; padding: 1rem; + overflow: hidden; } .title { @@ -42,7 +42,7 @@ color: #333; } -.categories { +.category { font-size: 0.8rem; color: #666; margin-bottom: 0.5rem; @@ -51,24 +51,10 @@ .description { font-size: 0.9rem; color: #666; - margin-bottom: 0.5rem; + flex-grow: 1; overflow: hidden; - line-height: 1.4; - max-height: calc(1.4em * 4); /* 4 lines of text */ + display: -webkit-box; + -webkit-line-clamp: 4; /* Adjust this number to show more or fewer lines */ + -webkit-box-orient: vertical; + text-overflow: ellipsis; } - -.technologies { - font-size: 0.8rem; - color: #0066cc; - margin-bottom: 0.5rem; -} - -.date { - font-size: 0.8rem; - color: #999; - margin-top: auto; -} - -.separator { - margin: 0 2px; -} \ No newline at end of file diff --git a/src/shared/components/resumeDownloader/ResumeDownloader.jsx b/src/shared/components/resumeDownloader/ResumeDownloader.jsx index acbce79..b5da1fe 100644 --- a/src/shared/components/resumeDownloader/ResumeDownloader.jsx +++ b/src/shared/components/resumeDownloader/ResumeDownloader.jsx @@ -8,7 +8,7 @@ const ResumeDownloader = ({ resumeLink }) => { const link = document.createElement("a"); link.href = resumeLink; console.log(link.href); - link.download = "Murtadha_Nisyif_Resume.pdf"; + link.download = "Murtadha.pdf"; link.target = "_blank"; link.rel = "noopener noreferrer"; diff --git a/src/utils/dataFetcher.js b/src/utils/dataFetcher.js deleted file mode 100644 index 5298702..0000000 --- a/src/utils/dataFetcher.js +++ /dev/null @@ -1,19 +0,0 @@ -export const fetchEducationData = async () => { - const response = await fetch("/assets/data/educationData.json"); - return await response.json(); -}; - -export const fetchExperienceData = async () => { - const response = await fetch("/assets/data/experienceData.json"); - return await response.json(); -}; - -export const fetchProjectsData = async () => { - const response = await fetch("/assets/data/projectsData.json"); - return await response.json(); -}; - -export const fetchPersonalData = async () => { - const response = await fetch("/assets/data/personalData.json"); - return await response.json(); -}; \ No newline at end of file diff --git a/version.txt b/version.txt index 7fd0b1e..aac2dac 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.12.4 \ No newline at end of file +0.12.1 \ No newline at end of file