diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 765a5a2..b6d39fe 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -28,6 +28,8 @@ import ProtectedRoute from "./components/shared/ProtectedRoute"; import PublicRoute from "./components/shared/PublicRoute"; import BugReportsPage from "./pages/BugReportsPage"; import Contact from "./pages/Contact"; +import About from "./pages/About"; + export default function App() { return ( @@ -115,6 +117,7 @@ export default function App() { } /> } /> } /> + } /> } /> diff --git a/frontend/src/components/shared/Navbar.jsx b/frontend/src/components/shared/Navbar.jsx index bd70e86..dd9eddc 100644 --- a/frontend/src/components/shared/Navbar.jsx +++ b/frontend/src/components/shared/Navbar.jsx @@ -463,6 +463,9 @@ export default function Navbar() { Contact Us + + About + {/* ── Desktop Right Controls ────────────────────────────────────── */} @@ -589,6 +592,9 @@ export default function Navbar() { Contact Us + + About + {isAuthenticated && ( diff --git a/frontend/src/pages/About.jsx b/frontend/src/pages/About.jsx new file mode 100644 index 0000000..9b5bf50 --- /dev/null +++ b/frontend/src/pages/About.jsx @@ -0,0 +1,118 @@ +import React from 'react' + +const About = () => { + return ( +
+ About - CodeLens + +
+
+

+ About Codelens +

+

+ UNIFIED DEVELOPER TELEMETRY ENGINE +

+

+ Stop Guessing. Start Growing. +

+

Codelens aggregates your GitHub, Leetcode, and Codeforces data into a single AI-powered command center that tells you what to learn neext.

+
+
+
+
+ + Codelens is the developer-first platform + that transforms complex data into clear, actionable insights. +
+
+ We believe best enginnering happens when developers have the right tool, the right data and the right context. +
+
+ From platform tracking to privacy by design, everthing we build is centered around clarity, control and performance. +
+
+
+
+
+
+ + + + + +
+

+ What we do +

+

Unify data from Github, LeetCode, and Codeforces to create a single comprehensive developer profile.

+
+
+
+
+ + + +
+

How it works +

+

AI (Gemini) analyzes your data, identifies strengths and gaps, and builds a personalized learning roadmap.

+
+
+
+
+ + + + + +
+

What you get +

+

Actionable insights and a step-by-step path to improve, grow, and achieve your engineering goals faster.

+
+
+
+
+
+

Build by developers, for developers

+

+ We're remote-first team of builders, thinkers, and problem solvers. +

+
+ Join the community +
+
+
+ ) +} + +export default About