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

Commit e610b63

Browse files
committed
fix: replace Placeholder logo with Placholder word
1 parent 533dd39 commit e610b63

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,15 @@
4444
"vite": "^5.4.1",
4545
"vite-plugin-node-polyfills": "^0.22.0",
4646
"vite-tsconfig-paths": "^5.0.1"
47+
},
48+
"create-solana-dapp": {
49+
"rename": {
50+
"placeholder": {
51+
"to": "{{name}}",
52+
"paths": [
53+
"src"
54+
]
55+
}
56+
}
4757
}
4858
}

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)