11import Image from "next/image" ;
22import Link from "next/link" ;
3- import { ArrowRight } from "lucide-react" ;
3+ import { ArrowRight , Github } from "lucide-react" ; // Added Github icon
44
55export default function Home ( ) {
66 return (
@@ -10,14 +10,28 @@ export default function Home() {
1010 < nav className = "fixed top-0 z-50 w-full border-b border-slate-800 bg-slate-950/60 backdrop-blur-md" >
1111 < div className = "flex items-center justify-between px-6 py-6 max-w-7xl mx-auto" >
1212 < div className = "flex items-center gap-2" >
13- < div className = "relative w-8 h-8" >
14- < Image src = "/logo.png" alt = "CodeFXR Logo" fill className = "object-contain" />
15- </ div >
16- < span className = "text-xl font-bold tracking-tight" > CodeFXR</ span >
13+ < Link href = "/" className = "flex items-center gap-2 group" >
14+ < div className = "relative w-8 h-8" >
15+ < Image src = "/logo.png" alt = "CodeFXR Logo" fill className = "object-contain" />
16+ </ div >
17+ < span className = "text-xl font-bold tracking-tight group-hover:text-slate-200 transition-colors" > CodeFXR</ span >
18+ </ Link >
1719 </ div >
18- < div className = "hidden md:flex gap-6 text-sm font-medium text-slate-400" >
20+
21+ { /* Right Side Links (Now with items-center for vertical alignment) */ }
22+ < div className = "hidden md:flex items-center gap-6 text-sm font-medium text-slate-400" >
1923 < Link href = "#products" className = "hover:text-green-400 transition-colors" > Applications</ Link >
20- < Link href = "https://github.com/CodeFXR/codefxr.github.io" target = "_blank" rel = "noopener noreferrer" className = "hover:text-blue-400 transition-colors" > GitHub</ Link >
24+
25+ { /* GitHub Logo Icon */ }
26+ < Link
27+ href = "https://github.com/CodeFXR/codefxr.github.io"
28+ target = "_blank"
29+ rel = "noopener noreferrer"
30+ className = "hover:text-white transition-colors"
31+ aria-label = "GitHub Repository"
32+ >
33+ < Github className = "w-5 h-5" />
34+ </ Link >
2135 </ div >
2236 </ div >
2337 </ nav >
@@ -57,7 +71,7 @@ export default function Home() {
5771 < div className = "max-w-7xl mx-auto" >
5872 < h2 className = "text-3xl font-bold mb-12 text-center" > Application Suite</ h2 >
5973
60- { /* 3 Column Grid */ }
74+ { /* 3 Column Grid & Alphabetical Order */ }
6175 < div className = "grid md:grid-cols-2 lg:grid-cols-3 gap-6" >
6276
6377 { /* 1. CLI-Studio (Green) */ }
@@ -96,12 +110,12 @@ export default function Home() {
96110 color = "silver"
97111 />
98112
99- { /* 5. Synapxis (Amber) */ }
113+ { /* 5. Synapxis (Amber) - UPDATED DESCRIPTION */ }
100114 < ProductCard
101115 href = "/docs/synapxis"
102116 icon = { < Image src = "/logo2.png" alt = "Synapxis" width = { 40 } height = { 40 } className = "object-contain" /> }
103117 title = "Synapxis"
104- description = "Graph view interface with jrnl integration ."
118+ description = "Terminal-based Knowledge Graph ."
105119 color = "amber"
106120 />
107121
0 commit comments