Skip to content

Commit b282a56

Browse files
feat(ui): update Gastown branding to Gas Town (#1440)
## Summary Updated all user-facing text from "Gastown" to "Gas Town" across the application UI: - Navigation sidebars (personal, organization, admin) - Page headings and main titles - Breadcrumb navigation - Admin panel card titles This is a purely cosmetic branding update that preserves all underlying functionality and URL structure. ## Verification - ✅ Verified all 11 UI text occurrences were updated consistently - ✅ Confirmed no functional code was modified - ✅ URL paths and routing remain unchanged ## Visual Changes Before: UI displayed "Gastown" in navigation and page titles After: UI displays "Gas Town" in navigation and page titles ## Reviewer Notes This is a straightforward branding update with no functional changes. All modifications are simple string replacements in user-facing text.
2 parents d35c3bd + bd8a506 commit b282a56

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

src/app/(app)/components/OrganizationAppSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export default function OrganizationAppSidebar({
151151
...(currentRole !== 'billing_manager'
152152
? [
153153
{
154-
title: 'Gastown',
154+
title: 'Gas Town',
155155
icon: Bot,
156156
url: `/organizations/${organizationId}/gastown`,
157157
},

src/app/(app)/components/PersonalAppSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default function PersonalAppSidebar(props: React.ComponentProps<typeof Si
129129
...(isGastownEnabled || isDevelopment
130130
? [
131131
{
132-
title: 'Gastown',
132+
title: 'Gas Town',
133133
icon: Factory,
134134
url: '/gastown',
135135
},

src/app/(app)/gastown/TownListPageClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function TownListPageClient() {
4242
<div className="flex items-start justify-between gap-3">
4343
<div>
4444
<div className="flex items-center gap-3">
45-
<h1 className="text-3xl font-semibold tracking-tight text-white/95">Gastown</h1>
45+
<h1 className="text-3xl font-semibold tracking-tight text-white/95">Gas Town</h1>
4646
<Badge variant="beta">beta</Badge>
4747
</div>
4848
<p className="mt-2 max-w-2xl text-sm leading-relaxed text-white/60">

src/app/(app)/organizations/[id]/gastown/OrgTownListPageClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export function OrgTownListPageClient({ organizationId, role }: OrgTownListPageC
8181
<div className="flex items-start justify-between gap-3">
8282
<div>
8383
<div className="flex items-center gap-3">
84-
<h1 className="text-3xl font-semibold tracking-tight text-white/95">Gastown</h1>
84+
<h1 className="text-3xl font-semibold tracking-tight text-white/95">Gas Town</h1>
8585
<Badge variant="beta">beta</Badge>
8686
</div>
8787
<p className="mt-2 max-w-2xl text-sm leading-relaxed text-white/60">

src/app/admin/components/AppSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const productEngineeringItems: MenuItem[] = [
146146
icon: () => <Database />,
147147
},
148148
{
149-
title: () => 'Gastown',
149+
title: () => 'Gas Town',
150150
url: '/admin/gastown',
151151
icon: () => <Network />,
152152
},

src/app/admin/components/UserAdmin/UserAdminGastown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function UserAdminGastown({ userId }: { userId: string }) {
152152
return (
153153
<Card className="col-span-1 lg:col-span-4">
154154
<CardHeader>
155-
<CardTitle>Gastown</CardTitle>
155+
<CardTitle>Gas Town</CardTitle>
156156
<CardDescription>Towns and rigs owned by this user</CardDescription>
157157
</CardHeader>
158158
<CardContent className="space-y-6">

src/app/admin/gastown/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ export default function GastownAnalyticsPage() {
507507
<AdminPage
508508
breadcrumbs={
509509
<BreadcrumbItem>
510-
<BreadcrumbLink href="/admin/gastown">Gastown Analytics</BreadcrumbLink>
510+
<BreadcrumbLink href="/admin/gastown">Gas Town Analytics</BreadcrumbLink>
511511
</BreadcrumbItem>
512512
}
513513
buttons={

src/app/admin/gastown/towns/[townId]/agents/[agentId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function AgentInspectorPage({
1717
const breadcrumbs = (
1818
<>
1919
<BreadcrumbItem>
20-
<BreadcrumbLink href="/admin/gastown">Gastown</BreadcrumbLink>
20+
<BreadcrumbLink href="/admin/gastown">Gas Town</BreadcrumbLink>
2121
</BreadcrumbItem>
2222
<BreadcrumbSeparator />
2323
<BreadcrumbItem>

src/app/admin/gastown/towns/[townId]/audit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default async function AuditLogPage({ params }: { params: Promise<{ townI
1313
const breadcrumbs = (
1414
<>
1515
<BreadcrumbItem>
16-
<BreadcrumbLink href="/admin/gastown">Gastown</BreadcrumbLink>
16+
<BreadcrumbLink href="/admin/gastown">Gas Town</BreadcrumbLink>
1717
</BreadcrumbItem>
1818
<BreadcrumbSeparator />
1919
<BreadcrumbItem>

src/app/admin/gastown/towns/[townId]/beads/[beadId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function BeadInspectorPage({
1717
const breadcrumbs = (
1818
<>
1919
<BreadcrumbItem>
20-
<BreadcrumbLink href="/admin/gastown">Gastown</BreadcrumbLink>
20+
<BreadcrumbLink href="/admin/gastown">Gas Town</BreadcrumbLink>
2121
</BreadcrumbItem>
2222
<BreadcrumbSeparator />
2323
<BreadcrumbItem>

0 commit comments

Comments
 (0)