Skip to content

Commit

Permalink
fix: replace Placeholder logo with Placholder word
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Jan 14, 2025
1 parent cda2d2b commit 55a002d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,15 @@
"tailwindcss": "^3.4.1",
"ts-jest": "^29.0.2",
"typescript": "^5"
},
"create-solana-dapp": {
"rename": {
"placeholder": {
"to": "{{name}}",
"paths": [
"src"
]
}
}
}
}
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {UiLayout} from '@/components/ui/ui-layout'
import {ReactQueryProvider} from './react-query-provider'

export const metadata = {
title: 'template-next-tailwind-counter',
title: 'Placeholder',
description: 'Generated by create-solana-dapp',
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/ui-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function UiLayout({ children, links }: { children: ReactNode; links: { la
<div className="navbar bg-base-300 dark:text-neutral-content flex-col md:flex-row space-y-2 md:space-y-0">
<div className="flex-1">
<Link className="btn btn-ghost normal-case text-xl" href="/">
<img className="h-4 md:h-6" alt="Logo" src="/logo.png" />
Placeholder
</Link>
<ul className="menu menu-horizontal px-1 space-x-2">
{links.map(({ label, path }) => (
Expand Down

0 comments on commit 55a002d

Please sign in to comment.