diff --git a/apps/arc-web/app/components/auth-layout.tsx b/apps/arc-web/app/components/auth-layout.tsx index 9cb3cc160..6240be540 100644 --- a/apps/arc-web/app/components/auth-layout.tsx +++ b/apps/arc-web/app/components/auth-layout.tsx @@ -1,10 +1,10 @@ import type { ReactNode } from "react"; -function ArcLogo({ className }: { className?: string }) { +function FabroLogo({ className }: { className?: string }) { return ( Arc @@ -22,7 +22,7 @@ export function AuthLayout({
- +
{children} diff --git a/apps/arc-web/app/layouts/app-shell.tsx b/apps/arc-web/app/layouts/app-shell.tsx index a69a14584..46b4e3009 100644 --- a/apps/arc-web/app/layouts/app-shell.tsx +++ b/apps/arc-web/app/layouts/app-shell.tsx @@ -101,7 +101,7 @@ export default function AppShell({ loaderData }: Route.ComponentProps) {
- Arc + Fabro
diff --git a/apps/arc-web/app/routes/auth-login.tsx b/apps/arc-web/app/routes/auth-login.tsx index b24ecc4f8..bbab724f1 100644 --- a/apps/arc-web/app/routes/auth-login.tsx +++ b/apps/arc-web/app/routes/auth-login.tsx @@ -38,7 +38,7 @@ export default function AuthLogin({ loaderData }: Route.ComponentProps) { return (

- Sign in to Arc + Sign in to Fabro

Authenticate with your GitHub account to continue. diff --git a/apps/arc-web/app/routes/insights.tsx b/apps/arc-web/app/routes/insights.tsx index ab05b3274..03a65e42a 100644 --- a/apps/arc-web/app/routes/insights.tsx +++ b/apps/arc-web/app/routes/insights.tsx @@ -6,7 +6,7 @@ import type { PaginatedSavedQueryList, PaginatedHistoryEntryList } from "@qltysh import type { Route } from "./+types/insights"; export function meta({}: Route.MetaArgs) { - return [{ title: "Insights — Arc" }]; + return [{ title: "Insights — Fabro" }]; } export const handle = { diff --git a/apps/arc-web/app/routes/retros.tsx b/apps/arc-web/app/routes/retros.tsx index 68cda042e..4844409ed 100644 --- a/apps/arc-web/app/routes/retros.tsx +++ b/apps/arc-web/app/routes/retros.tsx @@ -32,7 +32,7 @@ export async function loader({ request }: Route.LoaderArgs) { } export function meta({}: Route.MetaArgs) { - return [{ title: "Retros \u2014 Arc" }]; + return [{ title: "Retros \u2014 Fabro" }]; } const smoothnessOptions: Array<{ value: SmoothnessRating; label: string }> = [ diff --git a/apps/arc-web/app/routes/run-detail.tsx b/apps/arc-web/app/routes/run-detail.tsx index f1e27dc40..367805185 100644 --- a/apps/arc-web/app/routes/run-detail.tsx +++ b/apps/arc-web/app/routes/run-detail.tsx @@ -49,7 +49,7 @@ export async function action({ params, request }: Route.ActionArgs) { export function meta({ data }: Route.MetaArgs) { const run = data?.run; - return [{ title: run ? `${run.title} — Arc` : "Run — Arc" }]; + return [{ title: run ? `${run.title} — Fabro` : "Run — Fabro" }]; } export default function RunDetail({ loaderData, params }: Route.ComponentProps) { diff --git a/apps/arc-web/app/routes/run-retro.tsx b/apps/arc-web/app/routes/run-retro.tsx index 83d3bce49..2a5819d90 100644 --- a/apps/arc-web/app/routes/run-retro.tsx +++ b/apps/arc-web/app/routes/run-retro.tsx @@ -17,7 +17,7 @@ export async function loader({ request, params }: Route.LoaderArgs) { export function meta({ data }: Route.MetaArgs) { const retro = data?.retro; - return [{ title: retro ? `Retro: ${retro.goal} \u2014 Arc` : "Retro \u2014 Arc" }]; + return [{ title: retro ? `Retro: ${retro.goal} \u2014 Fabro` : "Retro \u2014 Fabro" }]; } function formatCost(cost: number | undefined): string { diff --git a/apps/arc-web/app/routes/runs.tsx b/apps/arc-web/app/routes/runs.tsx index b0adb138e..20e080f84 100644 --- a/apps/arc-web/app/routes/runs.tsx +++ b/apps/arc-web/app/routes/runs.tsx @@ -25,7 +25,7 @@ import type { PaginatedRunList } from "@qltysh/arc-api-client"; import type { Route } from "./+types/runs"; export function meta({}: Route.MetaArgs) { - return [{ title: "Runs — Arc" }]; + return [{ title: "Runs — Fabro" }]; } const columnConfig: { diff --git a/apps/arc-web/app/routes/session-detail.tsx b/apps/arc-web/app/routes/session-detail.tsx index 6d9836ba4..0719441af 100644 --- a/apps/arc-web/app/routes/session-detail.tsx +++ b/apps/arc-web/app/routes/session-detail.tsx @@ -17,7 +17,7 @@ import type { Route } from "./+types/session-detail"; export const handle = { hideHeader: true, wide: true }; export function meta({}: Route.MetaArgs) { - return [{ title: "Session — Arc" }]; + return [{ title: "Session — Fabro" }]; } export async function loader({ request, params }: Route.LoaderArgs) { diff --git a/apps/arc-web/app/routes/settings.tsx b/apps/arc-web/app/routes/settings.tsx index 4fce0258a..796a2126b 100644 --- a/apps/arc-web/app/routes/settings.tsx +++ b/apps/arc-web/app/routes/settings.tsx @@ -4,7 +4,7 @@ import type { ServerConfiguration } from "@qltysh/arc-api-client"; import type { Route } from "./+types/settings"; export function meta({}: Route.MetaArgs) { - return [{ title: "Settings — Arc" }]; + return [{ title: "Settings — Fabro" }]; } export const handle = { hideHeader: true }; diff --git a/apps/arc-web/app/routes/setup-callback.tsx b/apps/arc-web/app/routes/setup-callback.tsx index 810440547..55026fc1e 100644 --- a/apps/arc-web/app/routes/setup-callback.tsx +++ b/apps/arc-web/app/routes/setup-callback.tsx @@ -89,7 +89,7 @@ export default function SetupCallback({ loaderData }: Route.ComponentProps) {

- Arc + Fabro
diff --git a/apps/arc-web/app/routes/setup.tsx b/apps/arc-web/app/routes/setup.tsx index 2ee366274..4e1ac831b 100644 --- a/apps/arc-web/app/routes/setup.tsx +++ b/apps/arc-web/app/routes/setup.tsx @@ -13,7 +13,7 @@ export function loader({ request }: Route.LoaderArgs) { const suffix = Math.random().toString(16).slice(2, 8); const manifest = { - name: `Arc-${suffix}`, + name: `Fabro-${suffix}`, url: baseUrl, redirect_url: `${baseUrl}/setup/callback`, callback_urls: [`${baseUrl}/auth/callback`], @@ -39,7 +39,7 @@ export default function Setup({ loaderData }: Route.ComponentProps) { return (

- Set up Arc + Set up Fabro

Register a GitHub App to enable OAuth login and repository access. diff --git a/apps/arc-web/app/routes/start.tsx b/apps/arc-web/app/routes/start.tsx index 32576bd27..67552d54c 100644 --- a/apps/arc-web/app/routes/start.tsx +++ b/apps/arc-web/app/routes/start.tsx @@ -29,7 +29,7 @@ import type { Route } from "./+types/start"; export const handle = { hideHeader: true, wide: true }; export function meta({}: Route.MetaArgs) { - return [{ title: "Start — Arc" }]; + return [{ title: "Start — Fabro" }]; } export async function loader({ request }: Route.LoaderArgs) { diff --git a/apps/arc-web/app/routes/verification-control.tsx b/apps/arc-web/app/routes/verification-control.tsx index 846b7a203..a8869705a 100644 --- a/apps/arc-web/app/routes/verification-control.tsx +++ b/apps/arc-web/app/routes/verification-control.tsx @@ -68,7 +68,7 @@ export async function loader({ request, params }: Route.LoaderArgs) { export function meta({ data }: Route.MetaArgs) { const name = data?.data?.control?.name ?? "Verification"; - return [{ title: `${name} — Verification — Arc` }]; + return [{ title: `${name} — Verification — Fabro` }]; } type IconComponent = React.ComponentType<{ className?: string }>; diff --git a/apps/arc-web/app/routes/verification-controls.tsx b/apps/arc-web/app/routes/verification-controls.tsx index b18769797..ce827f277 100644 --- a/apps/arc-web/app/routes/verification-controls.tsx +++ b/apps/arc-web/app/routes/verification-controls.tsx @@ -52,7 +52,7 @@ export async function loader({ request }: Route.LoaderArgs) { export const handle = { wide: true }; export function meta({}: Route.MetaArgs) { - return [{ title: "Controls — Verification — Arc" }]; + return [{ title: "Controls — Verification — Fabro" }]; } type IconComponent = React.ComponentType<{ className?: string }>; diff --git a/apps/arc-web/app/routes/verification-criteria.tsx b/apps/arc-web/app/routes/verification-criteria.tsx index 20527a1ad..326d322b4 100644 --- a/apps/arc-web/app/routes/verification-criteria.tsx +++ b/apps/arc-web/app/routes/verification-criteria.tsx @@ -97,7 +97,7 @@ export async function loader({ request }: Route.LoaderArgs) { export const handle = { wide: true }; export function meta({}: Route.MetaArgs) { - return [{ title: "Verifications — Arc" }]; + return [{ title: "Verifications — Fabro" }]; } type IconComponent = React.ComponentType<{ className?: string }>; diff --git a/apps/arc-web/app/routes/verification-criterion.tsx b/apps/arc-web/app/routes/verification-criterion.tsx index c6976ae19..e38ab9169 100644 --- a/apps/arc-web/app/routes/verification-criterion.tsx +++ b/apps/arc-web/app/routes/verification-criterion.tsx @@ -63,7 +63,7 @@ export async function loader({ request, params }: Route.LoaderArgs) { export function meta({ data }: Route.MetaArgs) { const name = data?.data?.name ?? "Criterion"; - return [{ title: `${name} — Verification — Arc` }]; + return [{ title: `${name} — Verification — Fabro` }]; } type IconComponent = React.ComponentType<{ className?: string }>; diff --git a/apps/arc-web/app/routes/workflow-detail.tsx b/apps/arc-web/app/routes/workflow-detail.tsx index 2f758bd5f..3eedff60e 100644 --- a/apps/arc-web/app/routes/workflow-detail.tsx +++ b/apps/arc-web/app/routes/workflow-detail.tsx @@ -224,7 +224,7 @@ export async function loader({ request, params }: Route.LoaderArgs) { export function meta({ data }: Route.MetaArgs) { const title = data?.workflow?.name ?? "Workflow"; - return [{ title: `${title} — Arc` }]; + return [{ title: `${title} — Fabro` }]; } export default function WorkflowDetail({ loaderData }: Route.ComponentProps) { diff --git a/apps/arc-web/app/routes/workflows.tsx b/apps/arc-web/app/routes/workflows.tsx index e9a121b8c..7ec08e049 100644 --- a/apps/arc-web/app/routes/workflows.tsx +++ b/apps/arc-web/app/routes/workflows.tsx @@ -19,7 +19,7 @@ import type { PaginatedWorkflowList } from "@qltysh/arc-api-client"; import type { Route } from "./+types/workflows"; export function meta({}: Route.MetaArgs) { - return [{ title: "Workflows — Arc" }]; + return [{ title: "Workflows — Fabro" }]; } export const handle = { diff --git a/apps/arc-web/public/favicon.svg b/apps/arc-web/public/favicon.svg index f68b0422e..884567b00 100644 --- a/apps/arc-web/public/favicon.svg +++ b/apps/arc-web/public/favicon.svg @@ -1,5 +1,3 @@ - - - - - \ No newline at end of file + + + diff --git a/apps/arc-web/public/logo.svg b/apps/arc-web/public/logo.svg index f68b0422e..884567b00 100644 --- a/apps/arc-web/public/logo.svg +++ b/apps/arc-web/public/logo.svg @@ -1,5 +1,3 @@ - - - - - \ No newline at end of file + + + diff --git a/apps/arc-web/public/logotype-light.svg b/apps/arc-web/public/logotype-light.svg index 57d289e99..e5f01fc22 100644 --- a/apps/arc-web/public/logotype-light.svg +++ b/apps/arc-web/public/logotype-light.svg @@ -1,5 +1,4 @@ - - - - - \ No newline at end of file + + + + diff --git a/apps/arc-web/public/logotype.svg b/apps/arc-web/public/logotype.svg index 2822bce1b..65d7e4e72 100644 --- a/apps/arc-web/public/logotype.svg +++ b/apps/arc-web/public/logotype.svg @@ -1,5 +1,4 @@ - - - - - \ No newline at end of file + + + +