Skip to content

Commit 3cf941b

Browse files
feat: add footer with project name, GitHub, portfolio, and LinkedIn links
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
1 parent 733c114 commit 3cf941b

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

client/src/ui/layout/ShellLayout.tsx

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,36 @@ export const ShellLayout: React.FC<ShellLayoutProps> = ({ children }) => {
1717
<div className={clsx('flex flex-col h-screen w-screen overflow-hidden', `theme-${mode}`)}>
1818
<TopNav />
1919
<main className="flex-1 relative bg-intel-bg">{children}</main>
20+
<footer className="flex items-center justify-center gap-3 px-4 py-1 bg-black/60 border-t border-white/10 text-[10px] text-white/40 shrink-0">
21+
<span className="font-semibold tracking-widest text-white/60 uppercase">RADAR</span>
22+
<span className="text-white/20">·</span>
23+
<a
24+
href="https://github.com/Syntax-Error-1337/radar"
25+
target="_blank"
26+
rel="noopener noreferrer"
27+
className="hover:text-white/70 transition-colors"
28+
>
29+
GitHub
30+
</a>
31+
<span className="text-white/20">·</span>
32+
<a
33+
href="https://himanshu.pro/"
34+
target="_blank"
35+
rel="noopener noreferrer"
36+
className="hover:text-white/70 transition-colors"
37+
>
38+
Portfolio
39+
</a>
40+
<span className="text-white/20">·</span>
41+
<a
42+
href="https://www.linkedin.com/in/bugbounty/"
43+
target="_blank"
44+
rel="noopener noreferrer"
45+
className="hover:text-white/70 transition-colors"
46+
>
47+
LinkedIn
48+
</a>
49+
</footer>
2050
</div>
2151
);
2252
};

0 commit comments

Comments
 (0)