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

Commit b2b4850

Browse files
committed
fix: rename 'placeholder' to 'scaffold'
1 parent 91037c4 commit b2b4850

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"create-solana-dapp": {
4747
"rename": {
48-
"placeholder": {
48+
"scaffold": {
4949
"to": "{{name}}",
5050
"paths": ["src"]
5151
}

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: 'Placeholder',
8+
title: 'Scaffold',
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-
Placeholder
21+
Scaffold
2222
</Link>
2323
<ul className="menu menu-horizontal px-1 space-x-2">
2424
{links.map(({ label, path }) => (

0 commit comments

Comments
 (0)