Skip to content

Commit f813f94

Browse files
ofershapcursoragent
andcommitted
feat: add project logo to dashboard navbar and README
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 4f553d0 commit f813f94

4 files changed

Lines changed: 15 additions & 6 deletions

File tree

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
# Cursor Usage Tracker
1+
<p align="center">
2+
<img src="public/logo.png" alt="Cursor Usage Tracker" width="100" height="100" />
3+
</p>
24

3-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4-
[![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue)](https://www.typescriptlang.org/)
5-
[![Docker](https://img.shields.io/badge/Docker-ready-2496ED)](https://www.docker.com/)
5+
<h1 align="center">Cursor Usage Tracker</h1>
6+
7+
<p align="center">
8+
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" /></a>
9+
<a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-strict-blue" alt="TypeScript" /></a>
10+
<a href="https://www.docker.com/"><img src="https://img.shields.io/badge/Docker-ready-2496ED" alt="Docker" /></a>
11+
</p>
612

713
**Your company has 50+ developers on Cursor. Do you know who's spending $200/day on Claude Opus while everyone else uses Sonnet?**
814

public/favicon.png

3.06 KB
Loading

public/logo.png

23.7 KB
Loading

src/app/layout.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import type { Metadata } from "next";
2+
import Image from "next/image";
23
import Link from "next/link";
34
import "./globals.css";
45

56
export const metadata: Metadata = {
67
title: "Cursor Usage Tracker",
78
description: "Monitor Cursor IDE usage, detect anomalies, and alert on spending spikes",
9+
icons: { icon: "/favicon.png" },
810
};
911

1012
function NavLink({ href, children }: { href: string; children: React.ReactNode }) {
@@ -26,8 +28,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })
2628
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
2729
<div className="flex items-center justify-between h-11">
2830
<div className="flex items-center gap-1">
29-
<Link href="/" className="text-sm font-semibold text-white mr-4">
30-
Cursor Tracker
31+
<Link href="/" className="flex items-center gap-2 mr-4">
32+
<Image src="/logo.png" alt="" width={22} height={22} aria-hidden />
33+
<span className="text-sm font-semibold text-white">Cursor Tracker</span>
3134
</Link>
3235
<NavLink href="/">Overview</NavLink>
3336
<NavLink href="/insights">Insights</NavLink>

0 commit comments

Comments
 (0)