Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit 9a604c2

Browse files
committed
fix: replace Placeholder logo with Placholder word
1 parent 013787f commit 9a604c2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
7+
<title>Placeholder</title>
88
</head>
99
<body>
1010
<div id="root"></div>

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
"anchor",
6262
"src"
6363
]
64+
},
65+
"placeholder": {
66+
"to": "{{name}}",
67+
"paths": ["src"]
6468
}
6569
},
6670
"instructions": [

src/components/ui/ui-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function UiLayout({ children, links }: { children: ReactNode; links: { la
1414
<div className="navbar bg-base-300 dark:text-neutral-content flex-col md:flex-row space-y-2 md:space-y-0">
1515
<div className="flex-1">
1616
<Link className="btn btn-ghost normal-case text-xl" to="/">
17-
<img className="h-4 md:h-6" alt="Logo" src="/logo.png" />
17+
Placeholder
1818
</Link>
1919
<ul className="menu menu-horizontal px-1 space-x-2">
2020
{links.map(({ label, path }) => (

0 commit comments

Comments
 (0)