feat(toolrate): rebrand to toolr + logo links home
Build & Push Docker Image / build (push) Successful in 2m33s

- visible brand text changed to toolr (sidebar, mobile header, topbar
  fallback, login, 404, home heading, index.html title/og/twitter meta)
- brand logo now links to / in sidebar, mobile header, login, 404
- internal identifiers unchanged: package name, localStorage key
This commit is contained in:
opencode
2026-08-01 20:20:01 +02:00
parent ccc295f92f
commit cd4efd16f6
5 changed files with 20 additions and 20 deletions
+6 -6
View File
@@ -3,15 +3,15 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
<title>ToolRate — Tool-Bewertungsplattform</title> <title>toolr — Tool-Bewertungsplattform</title>
<meta name="description" content="ToolRate — Tool-Bewertungsplattform" /> <meta name="description" content="toolr — Tool-Bewertungsplattform" />
<meta name="robots" content="index, follow" /> <meta name="robots" content="index, follow" />
<meta property="og:title" content="ToolRate — Tool-Bewertungsplattform" /> <meta property="og:title" content="toolr — Tool-Bewertungsplattform" />
<meta property="og:description" content="ToolRate — Tool-Bewertungsplattform" /> <meta property="og:description" content="toolr — Tool-Bewertungsplattform" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ToolRate — Tool-Bewertungsplattform" /> <meta name="twitter:title" content="toolr — Tool-Bewertungsplattform" />
<meta name="twitter:description" content="ToolRate — Tool-Bewertungsplattform" /> <meta name="twitter:description" content="toolr — Tool-Bewertungsplattform" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+7 -7
View File
@@ -26,10 +26,10 @@ export function Layout({ children }: { children: React.ReactNode }) {
<div className="flex min-h-screen bg-background text-foreground"> <div className="flex min-h-screen bg-background text-foreground">
<aside className="w-64 border-r bg-card flex flex-col hidden md:flex"> <aside className="w-64 border-r bg-card flex flex-col hidden md:flex">
<div className="p-6 border-b"> <div className="p-6 border-b">
<div className="flex items-center gap-2 text-primary font-bold text-xl"> <Link href="/" className="flex items-center gap-2 text-primary font-bold text-xl">
<Wrench className="w-6 h-6" /> <Wrench className="w-6 h-6" />
<span>ToolRate</span> <span>toolr</span>
</div> </Link>
</div> </div>
<nav className="flex-1 p-4 space-y-2"> <nav className="flex-1 p-4 space-y-2">
{links.map((link) => { {links.map((link) => {
@@ -99,15 +99,15 @@ export function Layout({ children }: { children: React.ReactNode }) {
<main className="flex-1 flex flex-col min-w-0"> <main className="flex-1 flex flex-col min-w-0">
<header className="hidden md:flex items-center justify-between border-b bg-card px-6 py-3"> <header className="hidden md:flex items-center justify-between border-b bg-card px-6 py-3">
<h1 className="text-sm font-semibold text-muted-foreground"> <h1 className="text-sm font-semibold text-muted-foreground">
{activeLink?.label ?? "ToolRate"} {activeLink?.label ?? "toolr"}
</h1> </h1>
<ThemeToggle /> <ThemeToggle />
</header> </header>
<header className="md:hidden border-b p-4 flex items-center justify-between bg-card"> <header className="md:hidden border-b p-4 flex items-center justify-between bg-card">
<div className="flex items-center gap-2 text-primary font-bold text-lg"> <Link href="/" className="flex items-center gap-2 text-primary font-bold text-lg">
<Wrench className="w-5 h-5" /> <Wrench className="w-5 h-5" />
<span>ToolRate</span> <span>toolr</span>
</div> </Link>
<div className="flex items-center gap-1"> <div className="flex items-center gap-1">
<ThemeToggle /> <ThemeToggle />
{!isLoading && ( {!isLoading && (
+1 -1
View File
@@ -21,7 +21,7 @@ export default function Home() {
<Layout> <Layout>
<div className="space-y-8 pb-8"> <div className="space-y-8 pb-8">
<div> <div>
<h1 className="text-3xl font-bold tracking-tight mb-2">Welcome to ToolRate</h1> <h1 className="text-3xl font-bold tracking-tight mb-2">Welcome to toolr</h1>
<p className="text-muted-foreground">The community hub where engineers honestly rate the tools they use daily.</p> <p className="text-muted-foreground">The community hub where engineers honestly rate the tools they use daily.</p>
</div> </div>
+3 -3
View File
@@ -46,10 +46,10 @@ export default function Login() {
</div> </div>
<div className="w-full max-w-sm space-y-6"> <div className="w-full max-w-sm space-y-6">
<div className="flex flex-col items-center gap-2 text-center"> <div className="flex flex-col items-center gap-2 text-center">
<div className="flex items-center gap-2 text-primary font-bold text-2xl"> <Link href="/" className="flex items-center gap-2 text-primary font-bold text-2xl">
<Wrench className="w-7 h-7" /> <Wrench className="w-7 h-7" />
<span>ToolRate</span> <span>toolr</span>
</div> </Link>
<p className="text-muted-foreground text-sm">Sign in to your account</p> <p className="text-muted-foreground text-sm">Sign in to your account</p>
</div> </div>
+3 -3
View File
@@ -8,10 +8,10 @@ export default function NotFound() {
<div className="min-h-screen w-full flex items-center justify-center bg-background"> <div className="min-h-screen w-full flex items-center justify-center bg-background">
<Card className="w-full max-w-md mx-4"> <Card className="w-full max-w-md mx-4">
<CardContent className="pt-6 pb-6 text-center"> <CardContent className="pt-6 pb-6 text-center">
<div className="flex items-center justify-center gap-2 text-primary font-bold text-xl mb-6"> <Link href="/" className="flex items-center justify-center gap-2 text-primary font-bold text-xl mb-6">
<Wrench className="w-6 h-6" /> <Wrench className="w-6 h-6" />
<span>ToolRate</span> <span>toolr</span>
</div> </Link>
<h1 className="text-6xl font-bold text-muted-foreground/30 mb-2">404</h1> <h1 className="text-6xl font-bold text-muted-foreground/30 mb-2">404</h1>
<p className="text-muted-foreground mb-6">This page doesn't exist.</p> <p className="text-muted-foreground mb-6">This page doesn't exist.</p>
<Link href="/"> <Link href="/">