diff options
Diffstat (limited to 'frontend/app')
| -rw-r--r-- | frontend/app/components/GolfPlayApp.client.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/components/GolfWatchApp.client.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/_index.tsx | 4 | ||||
| -rw-r--r-- | frontend/app/routes/admin.dashboard.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/admin.games.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/admin.games_.$gameId.tsx | 4 | ||||
| -rw-r--r-- | frontend/app/routes/admin.users.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/dashboard.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/routes/golf.$gameId.play.tsx | 4 | ||||
| -rw-r--r-- | frontend/app/routes/golf.$gameId.watch.tsx | 4 | ||||
| -rw-r--r-- | frontend/app/routes/login.tsx | 2 |
11 files changed, 15 insertions, 15 deletions
diff --git a/frontend/app/components/GolfPlayApp.client.tsx b/frontend/app/components/GolfPlayApp.client.tsx index 3cb512a..2179b42 100644 --- a/frontend/app/components/GolfPlayApp.client.tsx +++ b/frontend/app/components/GolfPlayApp.client.tsx @@ -22,7 +22,7 @@ export default function GolfPlayApp({ game: Game; sockToken: string; }) { - // const socketUrl = `wss://t.nil.ninja/iosdc/2024/sock/golf/${game.game_id}/play?token=${sockToken}`; + // const socketUrl = `wss://t.nil.ninja/iosdc-japan/2024/sock/golf/${game.game_id}/play?token=${sockToken}`; const socketUrl = process.env.NODE_ENV === "development" ? `ws://localhost:8002/sock/golf/${game.game_id}/play?token=${sockToken}` diff --git a/frontend/app/components/GolfWatchApp.client.tsx b/frontend/app/components/GolfWatchApp.client.tsx index a76f2c9..5990fd4 100644 --- a/frontend/app/components/GolfWatchApp.client.tsx +++ b/frontend/app/components/GolfWatchApp.client.tsx @@ -20,7 +20,7 @@ export default function GolfWatchApp({ game: Game; sockToken: string; }) { - // const socketUrl = `wss://t.nil.ninja/iosdc/2024/sock/golf/${game.game_id}/watch?token=${sockToken}`; + // const socketUrl = `wss://t.nil.ninja/iosdc-japan/2024/sock/golf/${game.game_id}/watch?token=${sockToken}`; const socketUrl = process.env.NODE_ENV === "development" ? `ws://localhost:8002/sock/golf/${game.game_id}/watch?token=${sockToken}` diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx index 1699079..b5951ab 100644 --- a/frontend/app/routes/_index.tsx +++ b/frontend/app/routes/_index.tsx @@ -2,7 +2,7 @@ import type { MetaFunction } from "@remix-run/node"; import { Link } from "@remix-run/react"; export const meta: MetaFunction = () => { - return [{ title: "iOSDC 2024 Albatross.swift" }]; + return [{ title: "iOSDC Japan 2024 Albatross.swift" }]; }; export default function Index() { @@ -10,7 +10,7 @@ export default function Index() { <div className="min-h-screen bg-gray-100 flex items-center justify-center"> <div className="text-center"> <h1 className="text-4xl font-bold text-blue-600 mb-4"> - iOSDC 2024 Albatross.swift + iOSDC Japan 2024 Albatross.swift </h1> <p> <Link diff --git a/frontend/app/routes/admin.dashboard.tsx b/frontend/app/routes/admin.dashboard.tsx index af82731..1d172af 100644 --- a/frontend/app/routes/admin.dashboard.tsx +++ b/frontend/app/routes/admin.dashboard.tsx @@ -3,7 +3,7 @@ import { Link } from "@remix-run/react"; import { isAuthenticated } from "../.server/auth"; export const meta: MetaFunction = () => { - return [{ title: "[Admin] Dashboard | iOSDC 2024 Albatross.swift" }]; + return [{ title: "[Admin] Dashboard | iOSDC Japan 2024 Albatross.swift" }]; }; export async function loader({ request }: LoaderFunctionArgs) { diff --git a/frontend/app/routes/admin.games.tsx b/frontend/app/routes/admin.games.tsx index 8362c6c..085a97e 100644 --- a/frontend/app/routes/admin.games.tsx +++ b/frontend/app/routes/admin.games.tsx @@ -4,7 +4,7 @@ import { isAuthenticated } from "../.server/auth"; import { apiClient } from "../.server/api/client"; export const meta: MetaFunction = () => { - return [{ title: "[Admin] Games | iOSDC 2024 Albatross.swift" }]; + return [{ title: "[Admin] Games | iOSDC Japan 2024 Albatross.swift" }]; }; export async function loader({ request }: LoaderFunctionArgs) { diff --git a/frontend/app/routes/admin.games_.$gameId.tsx b/frontend/app/routes/admin.games_.$gameId.tsx index 5d83fb4..244092e 100644 --- a/frontend/app/routes/admin.games_.$gameId.tsx +++ b/frontend/app/routes/admin.games_.$gameId.tsx @@ -11,8 +11,8 @@ export const meta: MetaFunction<typeof loader> = ({ data }) => { return [ { title: data - ? `[Admin] Game Edit ${data.game.display_name} | iOSDC 2024 Albatross.swift` - : "[Admin] Game Edit | iOSDC 2024 Albatross.swift", + ? `[Admin] Game Edit ${data.game.display_name} | iOSDC Japan 2024 Albatross.swift` + : "[Admin] Game Edit | iOSDC Japan 2024 Albatross.swift", }, ]; }; diff --git a/frontend/app/routes/admin.users.tsx b/frontend/app/routes/admin.users.tsx index 61a25bf..6c9b60d 100644 --- a/frontend/app/routes/admin.users.tsx +++ b/frontend/app/routes/admin.users.tsx @@ -4,7 +4,7 @@ import { isAuthenticated } from "../.server/auth"; import { apiClient } from "../.server/api/client"; export const meta: MetaFunction = () => { - return [{ title: "[Admin] Users | iOSDC 2024 Albatross.swift" }]; + return [{ title: "[Admin] Users | iOSDC Japan 2024 Albatross.swift" }]; }; export async function loader({ request }: LoaderFunctionArgs) { diff --git a/frontend/app/routes/dashboard.tsx b/frontend/app/routes/dashboard.tsx index badf8c4..3cc8e13 100644 --- a/frontend/app/routes/dashboard.tsx +++ b/frontend/app/routes/dashboard.tsx @@ -5,7 +5,7 @@ import { isAuthenticated } from "../.server/auth"; import { apiClient } from "../.server/api/client"; export const meta: MetaFunction = () => { - return [{ title: "Dashboard | iOSDC 2024 Albatross.swift" }]; + return [{ title: "Dashboard | iOSDC Japan 2024 Albatross.swift" }]; }; export async function loader({ request }: LoaderFunctionArgs) { diff --git a/frontend/app/routes/golf.$gameId.play.tsx b/frontend/app/routes/golf.$gameId.play.tsx index 2a3a68b..919d8df 100644 --- a/frontend/app/routes/golf.$gameId.play.tsx +++ b/frontend/app/routes/golf.$gameId.play.tsx @@ -10,8 +10,8 @@ export const meta: MetaFunction<typeof loader> = ({ data }) => { return [ { title: data - ? `Golf Playing ${data.game.display_name} | iOSDC 2024 Albatross.swift` - : "Golf Playing | iOSDC 2024 Albatross.swift", + ? `Golf Playing ${data.game.display_name} | iOSDC Japan 2024 Albatross.swift` + : "Golf Playing | iOSDC Japan 2024 Albatross.swift", }, ]; }; diff --git a/frontend/app/routes/golf.$gameId.watch.tsx b/frontend/app/routes/golf.$gameId.watch.tsx index da7baf1..c2e269e 100644 --- a/frontend/app/routes/golf.$gameId.watch.tsx +++ b/frontend/app/routes/golf.$gameId.watch.tsx @@ -10,8 +10,8 @@ export const meta: MetaFunction<typeof loader> = ({ data }) => { return [ { title: data - ? `Golf Watching ${data.game.display_name} | iOSDC 2024 Albatross.swift` - : "Golf Watching | iOSDC 2024 Albatross.swift", + ? `Golf Watching ${data.game.display_name} | iOSDC Japan 2024 Albatross.swift` + : "Golf Watching | iOSDC Japan 2024 Albatross.swift", }, ]; }; diff --git a/frontend/app/routes/login.tsx b/frontend/app/routes/login.tsx index 0db0bc5..f63df08 100644 --- a/frontend/app/routes/login.tsx +++ b/frontend/app/routes/login.tsx @@ -7,7 +7,7 @@ import { Form } from "@remix-run/react"; import { authenticator } from "../.server/auth"; export const meta: MetaFunction = () => { - return [{ title: "Login | iOSDC 2024 Albatross.swift" }]; + return [{ title: "Login | iOSDC Japan 2024 Albatross.swift" }]; }; export async function loader({ request }: LoaderFunctionArgs) { |
