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

Commit c4dbe75

Browse files
committed
fix: rename 'placeholder' to 'scaffold'
1 parent bf07c63 commit c4dbe75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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>Placeholder</title>
7+
<title>Scaffold</title>
88
</head>
99
<body>
1010
<div id="root"></div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"+{pm} run anchor build | test | localnet | deploy"
6060
],
6161
"rename": {
62-
"placeholder": {
62+
"scaffold": {
6363
"to": "{{name}}",
6464
"paths": ["src"]
6565
}

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-
Placeholder
17+
Scaffold
1818
</Link>
1919
<ul className="menu menu-horizontal px-1 space-x-2">
2020
{links.map(({ label, path }) => (

0 commit comments

Comments
 (0)