Skip to content

Commit 5688c1f

Browse files
committed
fix
1 parent 6dd481a commit 5688c1f

File tree

5 files changed

+34
-3
lines changed

5 files changed

+34
-3
lines changed

.github/public/logo.svg

Lines changed: 14 additions & 0 deletions
Loading

packages/react-doctor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# React Doctor
1+
# <img src="https://github.com/millionco/react-doctor/blob/main/.github/public/logo.svg?raw=true" width="60" align="center" /> React Doctor
22

33
[![version](https://img.shields.io/npm/v/react-doctor?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/react-doctor)
44
[![downloads](https://img.shields.io/npm/dt/react-doctor.svg?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/react-doctor)
Lines changed: 14 additions & 0 deletions
Loading

packages/website/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const ibmPlexMono = IBM_Plex_Mono({
1111
export const metadata: Metadata = {
1212
title: "React Doctor",
1313
description: "Let coding agents diagnose and fix your React code.",
14-
icons: { icon: "/favicon.png" },
14+
icons: { icon: "/favicon.svg" },
1515
};
1616

1717
export default function RootLayout({

packages/website/src/components/terminal.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,10 @@ const Terminal = () => {
371371
{state.showHeader && (
372372
<FadeIn>
373373
<Spacer />
374-
<div>react-doctor</div>
374+
<div className="flex items-center gap-2">
375+
<img src="/favicon.svg" alt="React Doctor" width={24} height={24} />
376+
react-doctor
377+
</div>
375378
<div className="text-neutral-500">
376379
Let coding agents diagnose and fix your React code.
377380
</div>

0 commit comments

Comments
 (0)