diff --git a/frontend/src/routes/_layout/admin.tsx b/frontend/src/routes/_layout/admin.tsx index 99ae755874..a53ff2c4e9 100644 --- a/frontend/src/routes/_layout/admin.tsx +++ b/frontend/src/routes/_layout/admin.tsx @@ -29,7 +29,7 @@ export const Route = createFileRoute("/_layout/admin")({ head: () => ({ meta: [ { - title: "Admin - FastAPI Cloud", + title: "Admin - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/_layout/index.tsx b/frontend/src/routes/_layout/index.tsx index 40d4529cba..3e640cbbb8 100644 --- a/frontend/src/routes/_layout/index.tsx +++ b/frontend/src/routes/_layout/index.tsx @@ -7,7 +7,7 @@ export const Route = createFileRoute("/_layout/")({ head: () => ({ meta: [ { - title: "Dashboard - FastAPI Cloud", + title: "Dashboard - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/_layout/items.tsx b/frontend/src/routes/_layout/items.tsx index a319c734ee..a4df200023 100644 --- a/frontend/src/routes/_layout/items.tsx +++ b/frontend/src/routes/_layout/items.tsx @@ -21,7 +21,7 @@ export const Route = createFileRoute("/_layout/items")({ head: () => ({ meta: [ { - title: "Items - FastAPI Cloud", + title: "Items - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/_layout/settings.tsx b/frontend/src/routes/_layout/settings.tsx index 4cc1f82495..e109b5ae81 100644 --- a/frontend/src/routes/_layout/settings.tsx +++ b/frontend/src/routes/_layout/settings.tsx @@ -17,7 +17,7 @@ export const Route = createFileRoute("/_layout/settings")({ head: () => ({ meta: [ { - title: "Settings - FastAPI Cloud", + title: "Settings - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/login.tsx b/frontend/src/routes/login.tsx index 736f5ab8ae..a1f83d7e5a 100644 --- a/frontend/src/routes/login.tsx +++ b/frontend/src/routes/login.tsx @@ -44,7 +44,7 @@ export const Route = createFileRoute("/login")({ head: () => ({ meta: [ { - title: "Log In - FastAPI Cloud", + title: "Log In - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/recover-password.tsx b/frontend/src/routes/recover-password.tsx index 3f6420dc40..89ad59faff 100644 --- a/frontend/src/routes/recover-password.tsx +++ b/frontend/src/routes/recover-password.tsx @@ -42,7 +42,7 @@ export const Route = createFileRoute("/recover-password")({ head: () => ({ meta: [ { - title: "Recover Password - FastAPI Cloud", + title: "Recover Password - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/reset-password.tsx b/frontend/src/routes/reset-password.tsx index eb30d89998..b9d5562ad2 100644 --- a/frontend/src/routes/reset-password.tsx +++ b/frontend/src/routes/reset-password.tsx @@ -60,7 +60,7 @@ export const Route = createFileRoute("/reset-password")({ head: () => ({ meta: [ { - title: "Reset Password - FastAPI Cloud", + title: "Reset Password - FastAPI Template", }, ], }), diff --git a/frontend/src/routes/signup.tsx b/frontend/src/routes/signup.tsx index ff4f24e028..88c652c5b5 100644 --- a/frontend/src/routes/signup.tsx +++ b/frontend/src/routes/signup.tsx @@ -51,7 +51,7 @@ export const Route = createFileRoute("/signup")({ head: () => ({ meta: [ { - title: "Sign Up - FastAPI Cloud", + title: "Sign Up - FastAPI Template", }, ], }),