diff --git a/frontend/src/routes/_layout/admin.tsx b/frontend/src/routes/_layout/admin.tsx index 99ae755..a53ff2c 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 40d4529..3e640cb 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 a319c73..a4df200 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 4cc1f82..e109b5a 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 736f5ab..a1f83d7 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 3f6420d..89ad59f 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 eb30d89..b9d5562 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 ff4f24e..88c652c 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", }, ], }),