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

Commit 91037c4

Browse files
committed
fix: replace Placeholder logo with Placholder word
1 parent 71ae561 commit 91037c4

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@
4444
"typescript": "^5"
4545
},
4646
"create-solana-dapp": {
47+
"rename": {
48+
"placeholder": {
49+
"to": "{{name}}",
50+
"paths": ["src"]
51+
}
52+
},
4753
"instructions": [
4854
"Run Anchor commands:",
4955
"+{pm} run anchor build | test | localnet | deploy"

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {UiLayout} from '@/components/ui/ui-layout'
55
import {ReactQueryProvider} from './react-query-provider'
66

77
export const metadata = {
8-
title: 'template-next-tailwind-basic',
8+
title: 'Placeholder',
99
description: 'Generated by create-solana-dapp',
1010
}
1111

src/components/ui/ui-layout.tsx

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

0 commit comments

Comments
 (0)