Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export default function App() {
{/* Mobile Header Bar */}
<div className="mobile-header-bar">
<div className="mobile-brand" onClick={() => setActive('landing')} style={{ cursor: 'pointer' }}>
<AlgoRaceLogo size={26} showText={true} />
<AlgoRaceLogo size={26} showText={true} badge="v2.0" />
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
<button
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/AlgoRaceLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const AlgoRaceLogo: React.FC<LogoProps> = ({
showText = false,
animated = true,
tagline,
badge,
badge = 'v2.0',
}) => {
const gradientId = React.useId().replace(/:/g, '-');

Expand Down
3 changes: 2 additions & 1 deletion frontend/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export function Sidebar({
size={collapsed ? 36 : 38}
showText={!collapsed}
tagline="Benchmark Engine"
badge="v2.0"
/>
</div>
{mobileOpen && onMobileClose && (
Expand Down Expand Up @@ -128,7 +129,7 @@ export function Sidebar({
</button>

<div className="sidebar-footer">
<span className="footer-brand">AlgoRace</span>
<span className="footer-brand">AlgoRace v2.0</span>
<span>React · Spring Boot · 60 FPS</span>
</div>
</div>
Expand Down
21 changes: 16 additions & 5 deletions frontend/src/pages/LandingPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useState, lazy, Suspense } from 'react';
import { AlgoRaceLogo } from '../components/AlgoRaceLogo';
import {
BarChart3,
Binary,
Expand Down Expand Up @@ -61,7 +60,13 @@ export function LandingPage({ onNavigate, darkMode, setDarkMode }: Props) {
{/* Top Header / Sticky Nav */}
<header className="landing-navbar">
<div className="landing-nav-brand" onClick={() => scrollToSection('top')} style={{ cursor: 'pointer' }}>
<AlgoRaceLogo size={32} showText={true} />
<div className="brand-logo-icon">
<Zap size={20} className="text-emerald-400" />
</div>
<div className="brand-title-group">
<span className="brand-name">AlgoRace</span>
<span className="brand-badge">v2.0</span>
</div>
</div>

<button
Expand Down Expand Up @@ -555,7 +560,7 @@ export function LandingPage({ onNavigate, darkMode, setDarkMode }: Props) {
<div className="comparison-card algorace-card">
<div className="comp-card-glow" />
<div className="comparison-card-header">
<span className="comp-badge badge-algorace">AlgoRace</span>
<span className="comp-badge badge-algorace">AlgoRace v2.0</span>
<h3 className="comp-title">Multi-Lane Benchmarking Engine</h3>
<p className="comp-desc">Engineered for parallel multi-lane racing with microsecond telemetry.</p>
</div>
Expand Down Expand Up @@ -768,8 +773,14 @@ export function LandingPage({ onNavigate, darkMode, setDarkMode }: Props) {
<footer className="landing-footer">
<div className="footer-grid-container">
<div className="footer-col footer-col-brand">
<div className="landing-nav-brand" onClick={() => scrollToSection('top')} style={{ cursor: 'pointer' }}>
<AlgoRaceLogo size={30} showText={true} />
<div className="landing-nav-brand">
<div className="brand-logo-icon">
<Zap size={20} className="text-emerald-400" />
</div>
<div className="brand-title-group">
<span className="brand-name">AlgoRace</span>
<span className="brand-badge">v2.0</span>
</div>
</div>
<p className="footer-mission-text">
High-performance interactive algorithm benchmarking and visual exploration engine designed for computer scientists, developers, and students.
Expand Down
Loading