diff --git a/.github/workflows/deploy-react.yml b/.github/workflows/deploy-react.yml
new file mode 100644
index 0000000..6cce8c9
--- /dev/null
+++ b/.github/workflows/deploy-react.yml
@@ -0,0 +1,59 @@
+name: Build and deploy React site
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+ workflow_dispatch:
+
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v7
+
+ - name: Set up Node
+ uses: actions/setup-node@v6
+ with:
+ node-version: lts/*
+
+ - name: Install dependencies
+ run: npm install --no-audit --no-fund
+
+ - name: Build React site
+ run: npm run build
+
+ - name: Preserve existing static routes and assets
+ run: |
+ cp Uchiha.jpg jchrist.mp3 dist/
+ cp -R business visagelab-free dist/
+ touch dist/.nojekyll
+
+ - name: Configure GitHub Pages
+ if: github.event_name != 'pull_request'
+ uses: actions/configure-pages@v6
+
+ - name: Upload GitHub Pages artifact
+ if: github.event_name != 'pull_request'
+ uses: actions/upload-pages-artifact@v5
+ with:
+ path: ./dist
+
+ deploy:
+ if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v5
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e9fc32a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+node_modules/
+dist/
+.vite/
+.DS_Store
diff --git a/index.html b/index.html
index 7c7943d..d8ed1ea 100644
--- a/index.html
+++ b/index.html
@@ -1,139 +1,30 @@
-
-
-
-
-
-
The Uchiha Clan and Coding
-
The Uchiha Clan is renowned for their exceptional abilities and Sharingan eye technique. In the world of coding, we strive to develop our own unique skills and techniques, just like the Uchiha Clan.
-
Programming and developing, like the Sharingan, allow us to perceive and understand the intricacies of technology. With each line of code we write, we unlock new possibilities and shape the digital world around us.
-
As the Uchiha Clan sought to protect and advance their abilities, we, as developers, aim to use our coding skills to create innovative solutions, build amazing projects, and contribute to the ever-evolving field of technology.
-
-
-