Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<div align="center">

# 🚀 Portfolio Site v1.0.2
# 🚀 Portfolio Site v1.1.0

### A Modern, Dark-Themed Developer Portfolio

*Built with Astro • Powered by Cloudflare Workers • Deployed on GitHub Pages*

[![Version](https://img.shields.io/badge/Version-1.0.2-brightgreen?style=for-the-badge)](https://github.com/manideepsp/Portfolio-ManideepSP/releases/tag/v1.0.2)
[![Version](https://img.shields.io/badge/Version-1.1.0-brightgreen?style=for-the-badge)](https://github.com/manideepsp/Portfolio-ManideepSP/releases/tag/v1.1.0)
[![Status](https://img.shields.io/badge/Status-Production-success?style=for-the-badge)](https://manideepsp.github.io/Portfolio-ManideepSP)
[![Astro](https://img.shields.io/badge/Astro-5.16.4-FF5D01?style=for-the-badge&logo=astro&logoColor=white)](https://astro.build)
[![License](https://img.shields.io/badge/License-MIT-blue?style=for-the-badge)](LICENSE)
Expand Down
12 changes: 6 additions & 6 deletions node_modules/.vite/deps/_metadata.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "portfolio-site",
"version": "1.0.2",
"version": "1.1.0",
"type": "module",
"description": "A dark modern portfolio website showcasing projects and skills.",
"main": "index.js",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
83 changes: 0 additions & 83 deletions public/images/projects/dataflow-engine.svg

This file was deleted.

67 changes: 0 additions & 67 deletions public/images/projects/ml-dashboard.svg

This file was deleted.

4 changes: 2 additions & 2 deletions scripts/validate-projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);

const configPath = path.join(__dirname, '../src/lib/config.json');
const configPath = path.join(__dirname, '../src/lib/config/projects.config.json');
const publicDir = path.join(__dirname, '../public');

async function validateImages(projects) {
Expand Down Expand Up @@ -129,7 +129,7 @@ async function main() {
process.exit(1);
}

console.log(`\nFound ${projects.length} project(s) in config.json\n`);
console.log(`\nFound ${projects.length} project(s) in projects.config.json\n`);

// Run validations
const imageResults = await validateImages(projects);
Expand Down
Loading