Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NeerajGodiyal committed Nov 25, 2024
2 parents c2f6818 + 35af75d commit 1ee0ccc
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 19 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deployment
on:
push:
branches: main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: SSH Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
cd gamying.online/
git pull
npm install
npm run build
pm2 restart gamying-online
Binary file added public/devs/aman.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/devs/bhanu.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/devs/koro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/devs/rupansh.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/devs/sumit.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions src/components/PersonCard.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import Image from 'next/image';
import { FaGithub, FaLinkedin, FaTwitter } from 'react-icons/fa';
import { FaGithub, FaLinkedin, FaGlobeAsia } from 'react-icons/fa';

interface PersonCardProps {
name: string;
role: string;
image: string;
github?: string;
linkedin?: string;
twitter?: string;
portfolio?: string;
}

const PersonCard = ({ name, role, image, github, linkedin, twitter }: PersonCardProps) => {
const PersonCard = ({ name, role, image, github, linkedin, portfolio }: PersonCardProps) => {
return (
<div className="bg-black/20 backdrop-blur-sm border border-white/10 rounded-xl p-6 hover:border-white/20 transition-all">
<div className="flex flex-col items-center">
Expand All @@ -34,9 +34,9 @@ const PersonCard = ({ name, role, image, github, linkedin, twitter }: PersonCard
<FaLinkedin size={24} />
</a>
)}
{twitter && (
<a href={twitter} target="_blank" rel="noopener noreferrer" className="hover:scale-110 transition-transform">
<FaTwitter size={24} />
{portfolio && (
<a href={portfolio} target="_blank" rel="noopener noreferrer" className="hover:scale-110 transition-transform">
<FaGlobeAsia size={24} />
</a>
)}
</div>
Expand Down
26 changes: 13 additions & 13 deletions src/pages/people.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,47 +10,47 @@ const People = () => {
image: "/devs/ayam.jpg",
github: "https://github.com/ayamdobhal",
linkedin: "https://linkedin.com/in/ayamdobhal",
twitter: "https://twitter.com/ayamdobhal",
portfolio: "https://iamdobhal.dev",
},
{
name: "Sumit",
role: "Lead Developer",
image: "/team/placeholder.jpg",
image: "/devs/sumit.jpeg",
github: "https://github.com/imsk17",
linkedin: "https://linkedin.com/in/imsk17",
twitter: "https://twitter.com/imsk17_",
portfolio: "https://imsk17.org",
},
{
name: "Bhanu",
role: "Developer & Designer",
image: "/team/placeholder.jpg",
image: "/devs/bhanu.jpeg",
github: "https://github.com/codeptor",
linkedin: "https://linkedin.com/in/bhanu911",
twitter: "https://twitter.com/esotericfrr",
portfolio: "https://bhanueso.me",
},
{
name: "Neeraj",
role: "Creative Frontend Specialist",
image: "/team/placeholder.jpg",
image: "/devs/koro.png",
github: "https://github.com/NeerajGodiyal",
linkedin: "https://linkedin.com/in/neerajgodiyal",
twitter: "https://twitter.com/NeerajGodiyal",
portfolio: "https://neerajgodiyal.me",
},
{
name: "Rupansh",
role: "Everything Developer",
image: "/team/placeholder.jpg",
image: "/devs/rupansh.jpeg",
github: "https://github.com/rupansh",
linkedin: "https://linkedin.com/in/rupansh-s",
twitter: "https://twitter.com/rupansh",
portfolio: "https://rupansh.github.io",
},
{
name: "Aman",
role: "AI Engineer & DevOps",
image: "/team/placeholder.jpg",
github: "htttps://github.com/agoyel25",
image: "/devs/aman.jpeg",
github: "https://github.com/agoyel25",
linkedin: "https://linkedin.com/in/aman-goyal-a48b0628a",
twitter: "https://twitter.com/aman_goyal25",
portfolio: "https://agoyel25.github.io",
},
];

Expand All @@ -72,7 +72,7 @@ const People = () => {
image={person.image}
github={person.github}
linkedin={person.linkedin}
twitter={person.twitter}
portfolio={person.portfolio}
/>
))}
</div>
Expand Down

0 comments on commit 1ee0ccc

Please sign in to comment.