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

Commit bf07c63

Browse files
committed
fix: replace Placeholder logo with Placholder word
1 parent 09ef66e commit bf07c63

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@
5858
"Run Anchor commands:",
5959
"+{pm} run anchor build | test | localnet | deploy"
6060
],
61+
"rename": {
62+
"placeholder": {
63+
"to": "{{name}}",
64+
"paths": ["src"]
65+
}
66+
},
6167
"versions": {
6268
"anchor": "0.30.1",
6369
"solana": "1.18.0"

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)