Skip to content

Commit da78893

Browse files
committed
bugs fixing and missing files
1 parent c5f331a commit da78893

File tree

6 files changed

+98
-23
lines changed

6 files changed

+98
-23
lines changed

build/manifest.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"short_name": "Dev Portfolio",
3+
"name": "Developer Portfolio",
4+
"start_url": ".",
5+
"display": "standalone",
6+
"theme_color": "#000000",
7+
"background_color": "#ffffff"
8+
}

package-lock.json

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

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
"private": true,
66
"dependencies": {
77
"@tailwindcss/typography": "^0.5.9",
8-
"lucide-react": "^0.263.1",
8+
"lucide-react": "^0.244.0",
99
"react": "^18.2.0",
1010
"react-dom": "^18.2.0",
11-
"react-scripts": "^3.0.1",
12-
"tailwindcss": "^3.3.0"
11+
"react-scripts": "^3.0.1"
1312
},
1413
"scripts": {
15-
"predeploy": "npm run build",
16-
"deploy": "gh-pages -d build",
17-
"start": "react-scripts start",
18-
"build": "react-scripts build",
14+
"start": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
15+
"build": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
1916
"test": "react-scripts test",
20-
"eject": "react-scripts eject"
17+
"eject": "react-scripts eject",
18+
"predeploy": "set NODE_OPTIONS=--openssl-legacy-provider && npm run build",
19+
"deploy": "gh-pages -d build"
2120
},
2221
"devDependencies": {
23-
"autoprefixer": "^10.4.14",
22+
"autoprefixer": "^10.4.20",
2423
"gh-pages": "^5.0.0",
25-
"postcss": "^8.4.27"
24+
"postcss": "^8.5.1",
25+
"tailwindcss": "^3.4.17"
2626
},
2727
"browserslist": {
2828
"production": [

public/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="theme-color" content="#000000" />
8+
<meta name="description" content="Developer Portfolio - VS Code Theme" />
9+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
10+
<title>Developer Portfolio</title>
11+
</head>
12+
<body>
13+
<noscript>You need to enable JavaScript to run this app.</noscript>
14+
<div id="root"></div>
15+
</body>
16+
</html>

public/manifest.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"short_name": "Dev Portfolio",
3+
"name": "Developer Portfolio",
4+
"start_url": ".",
5+
"display": "standalone",
6+
"theme_color": "#000000",
7+
"background_color": "#ffffff"
8+
}

src/index.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
body {
6+
margin: 0;
7+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
8+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
9+
sans-serif;
10+
-webkit-font-smoothing: antialiased;
11+
-moz-osx-font-smoothing: grayscale;
12+
}
13+
14+
code {
15+
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
16+
monospace;
17+
}
18+
19+
/* Custom scrollbar styles */
20+
::-webkit-scrollbar {
21+
width: 8px;
22+
height: 8px;
23+
}
24+
25+
::-webkit-scrollbar-track {
26+
background: #1f2937;
27+
}
28+
29+
::-webkit-scrollbar-thumb {
30+
background: #4b5563;
31+
border-radius: 4px;
32+
}
33+
34+
::-webkit-scrollbar-thumb:hover {
35+
background: #6b7280;
36+
}

0 commit comments

Comments
 (0)