Skip to content

Commit 0922e6c

Browse files
committed
remove unused component and change devops kit to devkit
1 parent cc62e15 commit 0922e6c

7 files changed

Lines changed: 23 additions & 45 deletions

File tree

index.html

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>DevOps Kit</title>
8-
<meta name="description" content="DevOps Kit - A collection of developer tools including JSON Diff, JWT Debugger, Epoch Converter, and more." />
9-
</head>
10-
<body>
11-
<div id="root"></div>
12-
<script type="module" src="/src/main.jsx"></script>
13-
</body>
14-
</html>
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+
<title>DevKit</title>
9+
<meta name="description"
10+
content="DevKit - A collection of developer tools including JSON Diff, JWT Debugger, Epoch Converter, and more." />
11+
</head>
12+
13+
<body>
14+
<div id="root"></div>
15+
<script type="module" src="/src/main.jsx"></script>
16+
</body>
17+
18+
</html>

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "devops-kit",
2+
"name": "devkit",
33
"private": true,
44
"version": "1.4.1",
55
"type": "module",

src/features/EpochConverter.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Copy } from 'lucide-react';
33
import { Button, Card } from '../components/ui';
44

55
/**
6-
* Common timezones for DevOps work
6+
* Common timezones
77
*/
88
const TIMEZONES = [
99
"UTC",

src/features/GitHubSetup.jsx

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/features/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ export { default as JwtDebugger } from './JwtDebugger';
33
export { default as EpochConverter } from './EpochConverter';
44
export { default as StringTools } from './StringTools';
55
export { default as CharacterCount } from './CharacterCount';
6-
export { default as GitHubSetup } from './GitHubSetup';

src/layouts/Sidebar.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const NavItem = ({ item, isActive, onClick }) => (
77
<button
88
onClick={onClick}
99
className={`w-full flex items-center gap-3 px-3 py-2 rounded-lg transition-all ${isActive
10-
? 'bg-blue-600/10 text-blue-400 border border-blue-600/20'
11-
: 'text-slate-400 hover:bg-slate-800 hover:text-slate-200'
10+
? 'bg-blue-600/10 text-blue-400 border border-blue-600/20'
11+
: 'text-slate-400 hover:bg-slate-800 hover:text-slate-200'
1212
}`}
1313
>
1414
<item.icon size={18} />
@@ -30,7 +30,7 @@ const Sidebar = ({ navItems, activeTab, onTabChange }) => {
3030
<div className="p-4 border-b border-slate-800 flex items-center gap-2 text-blue-400">
3131
<Terminal size={24} />
3232
<span className="font-bold text-lg tracking-tight text-slate-100">
33-
DevOps<span className="text-blue-500">Kit</span>
33+
Dev<span className="text-blue-500">Kit</span>
3434
</span>
3535
</div>
3636

0 commit comments

Comments
 (0)