style: Fixed nav links
- Edited Footer to include gitea repo
This commit is contained in:
@@ -1,14 +1,17 @@
|
||||
export function FooterSection() {
|
||||
return (
|
||||
<footer className="border-t-2 border-dashed border-[var(--border-main)] pt-8 pb-12 flex flex-col sm:flex-row justify-between items-center gap-4 text-xs font-mono text-[var(--text-dim)]">
|
||||
<footer className="border-t-2 border-dashed border-(--border-main) pt-8 pb-12 flex flex-col sm:flex-row justify-between items-center gap-4 text-xs font-mono text-[var(--text-dim)]">
|
||||
<div className="flex items-center gap-2">
|
||||
<span className="font-sketch text-lg transform -rotate-6 block">Aditya Gupta</span>
|
||||
<span>// 2026 // NEW_DELHI</span>
|
||||
</div>
|
||||
<div className="flex gap-4 sketch-border-subtle px-4 py-2 bg-[var(--bg-surface)]">
|
||||
<span>UPTIME: 99.9%</span>
|
||||
<span className="text-[var(--text-dim)]">|</span>
|
||||
<span className="accent-text">NOMINAL</span>
|
||||
<div className="flex gap-4 sketch-border-subtle px-4 py-2 bg-(--bg-surface)">
|
||||
<span>Wanna Look at the code? It's not on github!</span>
|
||||
<span className="text-(--text-dim)">|</span>
|
||||
<span className="accent-text">
|
||||
<a href="https://git.adityagupta.dev/sortedcord/mi-sitio-personal">
|
||||
gitea</a>
|
||||
</span>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Cpu, Github, Mail, Terminal } from 'lucide-react';
|
||||
import { Cpu, Github, Mail, NotebookPen, Terminal, Twitter } from 'lucide-react';
|
||||
|
||||
type NavigationBarProps = {
|
||||
cpuModeEnabled: boolean;
|
||||
@@ -38,8 +38,9 @@ export function NavigationBar({ cpuModeEnabled, onCpuModeToggle }: NavigationBar
|
||||
<span className={`inline-block h-4 w-4 transform rounded-full transition-colors ${cpuModeEnabled ? 'translate-x-4 bg-(--bg-base)' : 'translate-x-1 bg-(--color-accent)'}`} />
|
||||
</span>
|
||||
</button>
|
||||
<a href="#" className="font-sketch text-lg hover:text-(--text-main) transition-colors flex items-center gap-2 group"><Github className="w-4 h-4 group-hover:-translate-y-1 transition-transform" /> github</a>
|
||||
<a href="#" className="font-sketch text-lg hover:text-(--text-main) transition-colors flex items-center gap-2 group"><Mail className="w-4 h-4 group-hover:-translate-y-1 transition-transform" /> contact</a>
|
||||
<a href="https://patio.adityagupta.dev" className="font-sketch text-lg hover:text-(--text-main) transition-colors flex items-center gap-2 group"><NotebookPen className="w-4 h-4 group-hover:-translate-y-1 transition-transform" /> patio</a>
|
||||
<a href="https://github.com/sortedcord" className="font-sketch text-lg hover:text-(--text-main) transition-colors flex items-center gap-2 group"><Github className="w-4 h-4 group-hover:-translate-y-1 transition-transform" /> github</a>
|
||||
<a href="https://x.com/sortedcord" className="font-sketch text-lg hover:text-(--text-main) transition-colors flex items-center gap-2 group"><Twitter className="w-4 h-4 group-hover:-translate-y-1 transition-transform" /> twitter</a>
|
||||
</div>
|
||||
</nav>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user