Skip to content

Commit baa7395

Browse files
authored
Merge pull request #53 from same7ammar/fix/remove-pods-sidebar
Remove Pods from sidebar menu
2 parents c2765fe + d2621ff commit baa7395

File tree

2 files changed

+4
-24
lines changed

2 files changed

+4
-24
lines changed

src/App.tsx

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ import {
3232
K8sJobIcon,
3333
K8sCronJobIcon,
3434
K8sStorageIcon,
35-
K8sDaemonSetIcon,
36-
K8sPodIcon
35+
K8sDaemonSetIcon
3736
} from './components/KubernetesIcons';
3837

3938
type PreviewMode = 'visual' | 'yaml' | 'summary' | 'argocd' | 'flow';
@@ -984,13 +983,7 @@ function App() {
984983
CronJobs
985984
</button>
986985

987-
<button
988-
disabled
989-
className="flex items-center w-full px-2 py-2 text-sm font-medium rounded-md text-gray-400 dark:text-gray-600 cursor-not-allowed opacity-50"
990-
>
991-
<K8sPodIcon className="mr-3 flex-shrink-0 h-6 w-6 text-gray-400 dark:text-gray-600" />
992-
Pods
993-
</button>
986+
994987
</div>
995988
)}
996989
{/* Storage Group */}

src/components/Footer.tsx

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Github, Heart, Zap } from 'lucide-react';
1+
import { Github, Heart } from 'lucide-react';
22

33
export function Footer() {
44
const currentYear = new Date().getFullYear();
@@ -42,20 +42,7 @@ export function Footer() {
4242
<span>for the Kubernetes community</span>
4343
</div>
4444

45-
{/* Right: Built with Bolt.new Badge */}
46-
<div className="flex justify-end">
47-
<a
48-
href="https://bolt.new"
49-
target="_blank"
50-
rel="noopener noreferrer"
51-
className="inline-flex items-center space-x-2 px-3 py-2 bg-gradient-to-r from-purple-600 to-blue-600 hover:from-purple-700 hover:to-blue-700 rounded-lg transition-all duration-200 text-sm font-medium shadow-lg hover:shadow-xl transform hover:scale-105"
52-
>
53-
<div className="w-5 h-5 bg-white rounded flex items-center justify-center">
54-
<Zap className="w-3 h-3 text-purple-600" />
55-
</div>
56-
<span>Built with Bolt.new</span>
57-
</a>
58-
</div>
45+
5946
</div>
6047
</div>
6148
</div>

0 commit comments

Comments
 (0)