Skip to content
Open
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
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
```
Expand Down
4 changes: 3 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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()],
},
});
});
16 changes: 8 additions & 8 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -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",

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: [
{
Expand Down