From 9dbf90c9a64e8c75938c6e3f3cd6ddfe5ce001dd Mon Sep 17 00:00:00 2001 From: rachitpanchal15-cyber Date: Wed, 8 Jul 2026 13:45:37 -0700 Subject: [PATCH 1/2] Update template branding to Rachit Panchal --- LICENSE.md | 2 +- README.md | 4 ++-- src/config.ts | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 7feadfc30b..1c6996114c 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 Ryan Fitzgerald +Copyright (c) 2025 Rachit Panchal Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 4c549e10f5..50a54723f6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This template also comes with `CLAUDE.md` and `.cursor/rules` files for easy int ## Preview -To view a live preview of the site, [click here](https://ryanfitzgerald.github.io/devportfolio/). +To view a live preview of the site, [click here](https://rachitpanchal.github.io/devportfolio/). ## Built With @@ -151,7 +151,7 @@ devportfolio/ If you'd like to run it locally: ``` -git clone https://github.com/RyanFitzgerald/devportfolio.git +git clone https://github.com/rachitpanchal/devportfolio.git cd devportfolio npm install ``` diff --git a/src/config.ts b/src/config.ts index 38ad6aef43..55cd17e9b0 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,16 +1,16 @@ export const siteConfig = { - name: "Ryan Fitzgerald", - title: "Senior Software Engineer", - description: "Portfolio website of Ryan Fitzgerald", + name: "Rachit Panchal", + title: "Student at Emerald High School (Rachit)", + + description: "Portfolio website of Rachit Panchal", accentColor: "#1d4ed8", social: { - email: "your-email@example.com", - linkedin: "https://linkedin.com/in/yourprofile", - twitter: "https://x.com/rfitzio", - github: "https://github.com/RyanFitzgerald", + email: "rachitpanchal15@gmail.com", + linkedin: "https://www.linkedin.com/in/rachit-panchal-1800b4409/", + github: "https://github.com/rachitpanchal15-cyber", }, aboutMe: - "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem quos asperiores nihil consequatur tempore cupiditate architecto natus commodi corrupti quas quasi facere est, dignissimos odit nam veniam sapiente ut, vitae eligendi ipsum dolor, nostrum ullam impedit! Corrupti ratione mollitia temporibus necessitatibus, consectetur reiciendis recusandae id, dolorum quaerat, vero pariatur. Ratione!", + "Hey, I'm Rachit Panchal, a freshman at Emerald High School in Dublin, CA. I'm into coding, AI, and entrepreneurship. I won 1st place at the Los Altos Hacks hackathon with my project Venture AI, and I love building things that solve real problems. I'm always looking for the next idea to bring to life.", skills: ["Javascript", "React", "Node.js", "Python", "AWS", "Docker"], projects: [ { From 777d0177d3400e18a775b55cb3732844e22912e2 Mon Sep 17 00:00:00 2001 From: rachitpanchal15-cyber Date: Thu, 9 Jul 2026 18:36:55 -0700 Subject: [PATCH 2/2] Add GitHub Pages deployment --- .github/workflows/deploy.yml | 29 +++++++++++++++++++++++++++++ astro.config.mjs | 4 +++- src/config.ts | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000000..89f85da286 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,29 @@ +name: Deploy to GitHub Pages +on: + push: + branches: [main] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm install + - run: npm run build + - uses: actions/upload-pages-artifact@v3 + with: + path: dist + deploy: + needs: build + runs-on: ubuntu-latest + permissions: + pages: write + id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - uses: actions/deploy-pages@v4 + id: deployment \ No newline at end of file diff --git a/astro.config.mjs b/astro.config.mjs index c92da047da..a97bd057cc 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,7 +4,9 @@ import tailwindcss from "@tailwindcss/vite"; // https://astro.build/config export default defineConfig({ + site: 'https://rachitpanchal15-cyber.github.io', + base: '/ryanfitzgerald', vite: { plugins: [tailwindcss()], }, -}); +}); \ No newline at end of file diff --git a/src/config.ts b/src/config.ts index 55cd17e9b0..2fb92ea7c8 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,6 +1,6 @@ export const siteConfig = { name: "Rachit Panchal", - title: "Student at Emerald High School (Rachit)", + title: "Student at Emerald High School", description: "Portfolio website of Rachit Panchal", accentColor: "#1d4ed8",