Skip to content

Commit d3d1060

Browse files
committed
fix: replace Placeholder logo with Placholder word
1 parent 9589af5 commit d3d1060

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@
4747
"rename": {
4848
"counter": {
4949
"to": "{{name}}",
50-
"paths": [
51-
"anchor",
52-
"src"
53-
]
50+
"paths": ["anchor", "src"]
51+
},
52+
"placeholder": {
53+
"to": "{{name}}",
54+
"paths": ["src"]
5455
}
5556
},
5657
"instructions": [

src/app/layout.tsx

+1-1
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-counter',
8+
title: 'Placeholder',
99
description: 'Generated by create-solana-dapp',
1010
}
1111

src/components/ui/ui-layout.tsx

+1-1
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)