Skip to content

Commit 2395297

Browse files
committed
about page added
1 parent 1fc96e5 commit 2395297

1 file changed

Lines changed: 80 additions & 0 deletions

File tree

app/about/page.tsx

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
import Image from "next/image";
2+
import Link from "next/link";
3+
import { Github, Linkedin } from "lucide-react";
4+
5+
export default function AboutPage() {
6+
return (
7+
<main className="min-h-screen bg-slate-950 text-white selection:bg-green-500 selection:text-slate-900 overflow-x-hidden flex flex-col">
8+
9+
{/* --- Navigation --- */}
10+
<nav className="fixed top-0 z-50 w-full border-b border-slate-800 bg-slate-950/60 backdrop-blur-md">
11+
<div className="flex items-center justify-between px-6 py-6 max-w-7xl mx-auto">
12+
<Link href="/" className="flex items-center gap-2 group">
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 group-hover:text-slate-200 transition-colors">CodeFXR</span>
17+
</Link>
18+
19+
<div className="flex items-center gap-4 md:gap-6 text-slate-400">
20+
<Link
21+
href="https://github.com/CodeFXR/codefxr.github.io"
22+
target="_blank"
23+
rel="noopener noreferrer"
24+
className="hover:text-white transition-colors"
25+
aria-label="GitHub Repository"
26+
>
27+
<Github className="w-5 h-5" />
28+
</Link>
29+
</div>
30+
</div>
31+
</nav>
32+
33+
{/* --- Content --- */}
34+
<div className="flex-1 flex flex-col items-center justify-center px-6 pt-40 pb-32 max-w-3xl mx-auto text-center">
35+
36+
{/* Glowing Logo */}
37+
<div className="relative w-28 h-28 mb-10 mx-auto">
38+
<div className="absolute inset-0 bg-blue-500/20 blur-2xl rounded-full"></div>
39+
<Image src="/logo.png" alt="CodeFXR Logo" fill className="object-contain drop-shadow-[0_0_30px_rgba(59,130,246,0.5)] relative z-10" />
40+
</div>
41+
42+
<h1 className="text-4xl md:text-5xl font-extrabold mb-10 tracking-tight">
43+
Bridging the gap between <br/>
44+
<span className="text-transparent bg-clip-text bg-gradient-to-r from-blue-600 via-teal-400 to-green-400">
45+
raw power and ease of use
46+
</span>
47+
</h1>
48+
49+
<p className="text-xl text-slate-400 leading-relaxed mb-8">
50+
As the Linux desktop gains momentum, CodeFXR aims at developing terminal applications for both new and advanced users.
51+
</p>
52+
53+
<p className="text-xl text-slate-400 leading-relaxed mb-16">
54+
By unifying existing command-line tools, we deliver intuitive workflows designed to scale from personal use to enterprise-level environments.
55+
</p>
56+
57+
<Link href="https://www.linkedin.com/company/codefxr/" target="_blank" rel="noopener noreferrer">
58+
<button className="px-8 py-3.5 rounded-lg font-bold bg-[#0A66C2] hover:bg-[#004182] text-white transition-all duration-300 flex items-center justify-center gap-3 shadow-[0_0_20px_-5px_rgba(10,102,194,0.4)]">
59+
<Linkedin className="w-5 h-5" />
60+
Follow CodeFXR on LinkedIn
61+
</button>
62+
</Link>
63+
</div>
64+
65+
{/* --- Footer --- */}
66+
<footer className="py-10 border-t border-slate-900 bg-slate-950 flex flex-col items-center justify-center gap-6 mt-auto">
67+
<div className="flex items-center gap-6 text-slate-500">
68+
<Link href="/about" className="text-white transition-colors text-sm font-bold">About</Link>
69+
<Link href="https://github.com/CodeFXR/codefxr.github.io" target="_blank" rel="noopener noreferrer" className="hover:text-white transition-colors" aria-label="GitHub">
70+
<Github className="w-5 h-5" />
71+
</Link>
72+
<Link href="https://www.linkedin.com/company/codefxr/" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500 transition-colors" aria-label="LinkedIn">
73+
<Linkedin className="w-5 h-5" />
74+
</Link>
75+
</div>
76+
<p className="text-slate-600 text-sm">&copy; {new Date().getFullYear()} CodeFXR. All rights reserved.</p>
77+
</footer>
78+
</main>
79+
);
80+
}

0 commit comments

Comments
 (0)