Skip to content

Commit a5108b2

Browse files
georgeglarsonclaude
andcommitted
Remove TrueFit branding from UI for generic portfolio use
Rename page title and header to "Code Exercises", remove brand references from OverviewPanel and ReviewsPanel descriptions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 437c635 commit a5108b2

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/client/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function App() {
2525
<div style={styles.shell}>
2626
<header style={styles.header}>
2727
<div style={styles.headerLeft}>
28-
<h1 style={styles.h1}>TrueFit Code Challenge</h1>
28+
<h1 style={styles.h1}>Code Exercises</h1>
2929
<span style={styles.subtitle}>6 exercises &middot; 6 languages &middot; 960+ tests</span>
3030
</div>
3131
<a

src/client/__tests__/App.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe("App", () => {
4848
it("renders the header", () => {
4949
mockInitialLoads();
5050
render(<App />);
51-
expect(screen.getByText("TrueFit Code Challenge")).toBeInTheDocument();
51+
expect(screen.getByText("Code Exercises")).toBeInTheDocument();
5252
});
5353

5454
it("renders tab navigation", () => {

src/client/components/OverviewPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const EXERCISES: {
5353
name: "Restaurant Reviews",
5454
lang: "TypeScript / React",
5555
color: "#38bdf8",
56-
why: "TrueFit\u2019s core stack. The most substantial exercise doubles as the unified control panel integrating all 5 other exercises as live panels.",
56+
why: "The most substantial exercise doubles as the unified control panel integrating all 5 other exercises as live panels.",
5757
tests: 371,
5858
},
5959
];

src/client/components/reviews/ReviewsPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function ReviewsPanel() {
2424
functional web interface.
2525
</ContextBox.Section>
2626
<ContextBox.Section heading="Solution">
27-
<Lang>TypeScript / React</Lang>. TrueFit's core stack. Express + better-sqlite3 on
27+
<Lang>TypeScript / React</Lang>. Express + better-sqlite3 on
2828
the backend with RESTful routes for all three entities. React frontend with data tables,
2929
inline editing, entity picker dropdowns, and client-side filtering. This panel also serves
3030
as a <em>unified control panel</em> integrating all 5 other exercises as live, interactive

src/client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>TrueFit Code Challenge</title>
6+
<title>Code Exercises</title>
77
<link rel="preconnect" href="https://fonts.googleapis.com" />
88
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
99
<link

0 commit comments

Comments
 (0)