Skip to content

Commit a123ac0

Browse files
committed
chore: rename app from Bugzilla Kanban to BoardZilla
1 parent 39fceb2 commit a123ac0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bugzilla Kanban
1+
# BoardZilla
22

33
> Puttin' bugz in their place since '26
44

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta name="description" content="Bugzilla Kanban Board - Puttin' bugz in their place since '26" />
8-
<title>Bugzilla Kanban - Puttin' bugz in their place since '26 😎</title>
7+
<meta name="description" content="BoardZilla - Puttin' bugz in their place since '26" />
8+
<title>BoardZilla - Puttin' bugz in their place since '26 😎</title>
99
</head>
1010
<body>
1111
<div id="root"></div>

src/App.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ describe('App', () => {
6464
it('should render the app title', () => {
6565
render(<App />)
6666

67-
expect(screen.getByText('Bugzilla Kanban')).toBeInTheDocument()
67+
expect(screen.getByText('BoardZilla')).toBeInTheDocument()
6868
})
6969

7070
it('should render the tagline', () => {
@@ -92,7 +92,7 @@ describe('App', () => {
9292
it('should render the header with title', () => {
9393
render(<App />)
9494

95-
expect(screen.getByText('Bugzilla Kanban')).toBeInTheDocument()
95+
expect(screen.getByText('BoardZilla')).toBeInTheDocument()
9696
})
9797

9898
it('should show filter bar', () => {

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ function App() {
285285
return (
286286
<div className="min-h-screen bg-bg-primary text-text-primary">
287287
<div className="container mx-auto px-4 py-8">
288-
<h1 className="mb-2 text-center text-4xl font-bold">Bugzilla Kanban</h1>
288+
<h1 className="mb-2 text-center text-4xl font-bold">BoardZilla</h1>
289289
<p className="mb-4 text-center text-text-secondary">
290290
Puttin' bugz in their place since '26 😎
291291
</p>
@@ -332,7 +332,7 @@ function App() {
332332
<header className="border-b border-bg-tertiary bg-bg-secondary px-4 py-4">
333333
<div className="container mx-auto flex items-center justify-between">
334334
<div>
335-
<h1 className="text-2xl font-bold">Bugzilla Kanban</h1>
335+
<h1 className="text-2xl font-bold">BoardZilla</h1>
336336
<div className="flex items-center gap-3 text-sm">
337337
<span className="text-text-secondary">Puttin' bugz in their place since '26 😎</span>
338338
<span className="text-text-tertiary"></span>

src/components/FAQ/FaqModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const faqs = [
1010
{
1111
question: 'What is this app?',
1212
answer:
13-
'Bugzilla Kanban is a visual board for managing Mozilla Bugzilla bugs. It lets you drag and drop bugs between status columns and batch-update them in Bugzilla.',
13+
'BoardZilla is a visual board for managing Mozilla Bugzilla bugs. It lets you drag and drop bugs between status columns and batch-update them in Bugzilla.',
1414
},
1515
{
1616
question: 'How do I get a Bugzilla API key?',

0 commit comments

Comments
 (0)