Skip to content

Commit

Permalink
updated info
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishu Singh committed Nov 2, 2024
1 parent 403e89d commit 1e77f3f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Clone GitHub Pages repository
run: git clone --branch=main https://github.com/IshuSinghSE/IshuSinghSE.github.io.git gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}

- name: Copy built files
run: cp -r out/* gh-pages/
Expand All @@ -51,9 +51,9 @@ jobs:
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git config --global credential.helper 'store --file=.git/credentials'
echo "https://${{ secrets.GITHUB_TOKEN }}:@github.com" > .git/credentials
echo "https://${{ secrets.GH_TOKEN }}:@github.com" > .git/credentials
git add .
git commit -m 'Deploy Next.js app'
git push origin main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
# production
/build
/out
*.env
.env.production
.env.development
.env.local

# misc
.DS_Store
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nextjs-portfolio",
"version": "0.1.0",
"homepage": "https://IshuSinghSE.github.io/portfolio",
"homepage": "https://IshuSinghSE.github.io/",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
3 changes: 2 additions & 1 deletion src/components/Hero/Hero.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ const Hero = () => {
Hi, I&apos;m Ishu <br />
</SectionTitle>
<SectionText>
Dive into my world of tech magic! From coding spells to digital enchantments, explore my projects and let&apos;s create some tech sorcery together!
Explore my projects and professional journey. Keep pushing forward and never stop learning!
Stay curious and keep coding!
</SectionText>
<Link href="/Resume.pdf" passHref>
<Button>View Resume</Button>
Expand Down
19 changes: 5 additions & 14 deletions src/components/Technologies/Technologies.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,33 @@ import { DiBackbone, DiFirebase, DiHtml53DEffects, DiMootools, DiPython, DiReact
import { Section, SectionDivider, SectionText, SectionTitle } from '../../styles/GlobalComponents';
import { List, ListContainer, ListItem, ListParagraph, ListTitle } from './TechnologiesStyles';

const Technologies = () => (
const Technologies = () => (
<Section id='tech'>
<SectionDivider />
<SectionTitle>Technologies</SectionTitle>
<SectionText>
I've some experience programming knowledge in Python...
I&pos;ve worked with a range of technologies in the web development world.
</SectionText>
<List>
<ListItem>
<DiReact size="3rem" />
<ListContainer>
<ListTitle>Front-End</ListTitle>
<ListParagraph>
Experience With <br />
React.js
</ListParagraph>
<ListParagraph>React.js, NextJS, ShadcnUI</ListParagraph>
</ListContainer>
</ListItem>
<ListItem>
<DiBackbone size="3rem" />
<ListContainer>
<ListTitle>Back-End</ListTitle>
<ListParagraph>
Experience With <br />
Python, Database
</ListParagraph>
<ListParagraph>Python, Django, NodeJS, MongoDB, SQL</ListParagraph>
</ListContainer>
</ListItem>
<ListItem>
<DiHtml53DEffects size="3rem" />
<ListContainer>
<ListTitle>UI/UX</ListTitle>
<ListParagraph>
Experience With <br />
Figma tools
</ListParagraph>
<ListParagraph>Figma tools</ListParagraph>
</ListContainer>
</ListItem>
</List>
Expand Down
3 changes: 1 addition & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Acomplishments from '../components/Acomplishments/Acomplishments';
import BgAnimation from '../components/BackgrooundAnimation/BackgroundAnimation';
import BgAnimation from '../components/BackgroundAnimation/BackgroundAnimation';
import Hero from '../components/Hero/Hero';
import Projects from '../components/Projects/Projects';
import Technologies from '../components/Technologies/Technologies';
Expand Down

0 comments on commit 1e77f3f

Please sign in to comment.