Skip to content

Commit 0280163

Browse files
committed
Initial commit
0 parents  commit 0280163

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+11679
-0
lines changed

.github/workflows/pages.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
- name: Setup Node
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: "20"
27+
cache: "npm"
28+
- name: Install dependencies
29+
run: npm ci
30+
- name: Build
31+
run: npm run build
32+
- name: Upload Pages artifact
33+
uses: actions/upload-pages-artifact@v3
34+
with:
35+
path: dist
36+
37+
deploy:
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}
41+
runs-on: ubuntu-latest
42+
needs: build
43+
steps:
44+
- name: Deploy to GitHub Pages
45+
id: deployment
46+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

Profile.pdf

47 KB
Binary file not shown.

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Portfolio Showcase
2+
3+
## Project info
4+
5+
This is a Vite + React + TypeScript portfolio site.
6+
7+
## Local development
8+
9+
```sh
10+
# Step 1: Clone the repository using the project's Git URL.
11+
git clone <YOUR_GIT_URL>
12+
13+
# Step 2: Navigate to the project directory.
14+
cd <YOUR_PROJECT_NAME>
15+
16+
# Step 3: Install the necessary dependencies.
17+
npm i
18+
19+
# Step 4: Start the development server with auto-reloading.
20+
npm run dev
21+
```
22+
23+
## What technologies are used for this project?
24+
25+
- Vite
26+
- TypeScript
27+
- React
28+
- shadcn-ui
29+
- Tailwind CSS

bun.lockb

194 KB
Binary file not shown.

components.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/index.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
}
20+
}

eslint.config.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import reactHooks from "eslint-plugin-react-hooks";
4+
import reactRefresh from "eslint-plugin-react-refresh";
5+
import tseslint from "typescript-eslint";
6+
7+
export default tseslint.config(
8+
{ ignores: ["dist"] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ["**/*.{ts,tsx}"],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
"react-hooks": reactHooks,
18+
"react-refresh": reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
23+
"@typescript-eslint/no-unused-vars": "off",
24+
},
25+
},
26+
);

index.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<!-- TODO: Set the document title to the name of your application -->
7+
<title>Dev Kabir | WordPress Plugin Developer</title>
8+
<meta
9+
name="description"
10+
content="Dev Kabir is a WordPress plugin developer specializing in PHP and JavaScript, with 150+ plugins built and experience at WPMU DEV."
11+
/>
12+
<meta name="author" content="Dev Kabir" />
13+
14+
<!-- TODO: Update og:title to match your application name -->
15+
<meta property="og:title" content="Dev Kabir | WordPress Plugin Developer" />
16+
<meta
17+
property="og:description"
18+
content="WordPress plugin developer specializing in PHP and JavaScript, with 150+ plugins and experience at WPMU DEV."
19+
/>
20+
<meta property="og:type" content="website" />
21+
<meta property="og:image" content="/placeholder.svg" />
22+
23+
<meta name="twitter:card" content="summary_large_image" />
24+
<meta name="twitter:site" content="@portfolio" />
25+
<meta name="twitter:image" content="/placeholder.svg" />
26+
</head>
27+
28+
<body>
29+
<div id="root"></div>
30+
<script type="module" src="/src/main.tsx"></script>
31+
</body>
32+
</html>

0 commit comments

Comments
 (0)