Rebrand: Character Sandbox → The Howling Whispers

This commit is contained in:
The Howling Whispers 2026-06-30 17:04:39 +02:00
parent 2b5b7bb50c
commit db1e9a77d3
6 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ export default function Navbar() {
return (
<nav className="navbar">
<div className="navbar-brand">
<Link to="/">Character Sandbox</Link>
<Link to="/">The Howling Whispers</Link>
</div>
<div className="navbar-links">
<Link to="/characters">Characters</Link>

View File

@ -22,7 +22,7 @@ export default function Login() {
return (
<div className="auth-page">
<div className="auth-card">
<h1>Character Sandbox</h1>
<h1>The Howling Whispers</h1>
<h2>Sign In</h2>
{error && <div className="error-message">{error}</div>}
<form onSubmit={handleSubmit}>

View File

@ -23,7 +23,7 @@ export default function Register() {
return (
<div className="auth-page">
<div className="auth-card">
<h1>Character Sandbox</h1>
<h1>The Howling Whispers</h1>
<h2>Create Account</h2>
{error && <div className="error-message">{error}</div>}
<form onSubmit={handleSubmit}>

View File

@ -1,7 +1,7 @@
{
"name": "character-sandbox-monorepo",
"name": "thw-monorepo",
"version": "1.0.0",
"description": "A monorepo for the advanced character sandbox application.",
"description": "The Howling Whispers - character sandbox platform",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run start --prefix client\" \"npm run start --prefix server\"",

View File

@ -23,5 +23,5 @@ app.get('/api/health', (req, res) => {
});
app.listen(PORT, () => {
console.log(`Character Sandbox API running on http://localhost:${PORT}`);
console.log(`The Howling Whispers API running on http://localhost:${PORT}`);
});

View File

@ -1,7 +1,7 @@
{
"name": "character-sandbox-server",
"name": "thw-server",
"version": "1.0.0",
"description": "Backend for the character sandbox",
"description": "Backend for The Howling Whispers",
"main": "index.js",
"type": "module",
"scripts": {