Readded credits, added all open source projects used in credits, added achievements in sidebar as we seem to have enough space on a 1920x1080 screen for it

This commit is contained in:
2025-12-07 20:55:50 +01:00
parent b0b229a9f9
commit d45e665bcd
4 changed files with 34 additions and 5 deletions
+2 -1
View File
@@ -14,6 +14,7 @@ const navItems = [
{ path: '/ai', label: 'AI Chat' },
{ path: '/music', label: 'Music Player' },
{ path: '/games', label: 'Arcade' },
{ path: '/achievements', label: 'Achievements' },
{ path: '/faq', label: 'FAQ' },
];
@@ -136,4 +137,4 @@ const Sidebar = () => {
);
};
export default Sidebar;
export default Sidebar;
+5 -2
View File
@@ -28,6 +28,8 @@ const commands: Record<string, string> = {
'/achievements': '/achievements',
'/ach': '/achievements',
'/a': '/achievements',
'/credits': '/credits',
'/cred': '/credits',
};
const helpText = `Available commands:
@@ -45,13 +47,14 @@ const helpText = `Available commands:
/music, /m - Navigate to Music Player
/ai, /chat - Navigate to AI Chat
/achievements /a - View achievements
/credits /cred - View credits
/help, /h - Show this help message
/clear, /c - Clear terminal output`;
const helpHint = `
╔══════════════════════════════════════════╗
║ ...there may be other commands. ║
║ Perhaps a ꃅꀤꈤ꓄ to an easter egg exists? ║
║ Perhaps a ꃅꀤꈤ꓄ to an easter egg exists?
╚══════════════════════════════════════════╝`;
const TerminalCommand = () => {
@@ -175,7 +178,7 @@ const TerminalCommand = () => {
<div className="flex items-center justify-between px-4 py-2 border-b border-primary bg-primary/10">
<div className="flex items-center gap-2">
<Terminal size={16} className="text-primary" />
<span className="font-minecraft text-sm text-primary text-glow">terminal@my-site.lol</span>
<span className="font-minecraft text-sm text-primary text-glow">terminal@fbi.gov</span>
</div>
<button
onClick={() => setIsOpen(false)}