Skip to content

Commit 47d41e5

Browse files
committed
Deploy portfolio website
1 parent e984dcb commit 47d41e5

32 files changed

+4042
-25
lines changed

.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?

PICTURE.jpg

-75.3 KB
Binary file not shown.
11 KB
Loading

dist/assets/gmail-DSpKh0D1.png

7.85 KB
Loading

dist/assets/index-D-IKIV5W.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/index-vyM8XurD.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/profile-BYk0ExE-.JPG

294 KB
Loading

dist/index.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
9+
<!-- SEO Meta Tags -->
10+
<title>Ata Ul Hai | Portfolio</title>
11+
<meta name="description"
12+
content="Portfolio of Ata Ul Hai - Computer Science undergraduate specializing in AI & Machine Learning, building functional web applications." />
13+
<meta name="keywords"
14+
content="Ata Ul Hai, developer, portfolio, web development, React, JavaScript, Python, AI, Machine Learning" />
15+
<meta name="author" content="Ata Ul Hai" />
16+
17+
<!-- Open Graph / Social Media -->
18+
<meta property="og:title" content="Ata Ul Hai | Portfolio" />
19+
<meta property="og:description"
20+
content="CS Undergraduate specializing in AI & ML, building functional web applications." />
21+
<meta property="og:type" content="website" />
22+
23+
<!-- Google Fonts - Inter -->
24+
<link rel="preconnect" href="https://fonts.googleapis.com">
25+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
26+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
27+
<script type="module" crossorigin src="/assets/index-D-IKIV5W.js"></script>
28+
<link rel="stylesheet" crossorigin href="/assets/index-vyM8XurD.css">
29+
</head>
30+
31+
<body>
32+
<!-- React will render the app into this div -->
33+
<div id="root"></div>
34+
</body>
35+
36+
</html>

dist/vite.svg

Lines changed: 1 addition & 0 deletions
Loading

eslint.config.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 { defineConfig, globalIgnores } from 'eslint/config'
6+
7+
export default defineConfig([
8+
globalIgnores(['dist']),
9+
{
10+
files: ['**/*.{js,jsx}'],
11+
extends: [
12+
js.configs.recommended,
13+
reactHooks.configs.flat.recommended,
14+
reactRefresh.configs.vite,
15+
],
16+
languageOptions: {
17+
ecmaVersion: 2020,
18+
globals: globals.browser,
19+
parserOptions: {
20+
ecmaVersion: 'latest',
21+
ecmaFeatures: { jsx: true },
22+
sourceType: 'module',
23+
},
24+
},
25+
rules: {
26+
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
27+
},
28+
},
29+
])

0 commit comments

Comments
 (0)