aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-04-06 21:11:08 +0900
committernsfisis <nsfisis@gmail.com>2025-04-06 21:11:08 +0900
commit948d7e6596bc4a37c8d7903e785e099b6a81a664 (patch)
tree31aa7fe5a18b9495aa2326c8924e2a21486f950f /frontend/app
parentac38af84490b1bd5546ff7ff8135ab4126bee090 (diff)
downloadphperkaigi-2025-albatross-main.tar.gz
phperkaigi-2025-albatross-main.tar.zst
phperkaigi-2025-albatross-main.zip
feat(frontend): update index pageHEADmain
Diffstat (limited to 'frontend/app')
-rw-r--r--frontend/app/routes/_index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx
index 5ec60e5..ef54c84 100644
--- a/frontend/app/routes/_index.tsx
+++ b/frontend/app/routes/_index.tsx
@@ -1,6 +1,6 @@
import type { LoaderFunctionArgs, MetaFunction } from "react-router";
import { ensureUserNotLoggedIn } from "../.server/auth";
-import BorderedContainerWithCaption from "../components/BorderedContainerWithCaption";
+import BorderedContainer from "../components/BorderedContainer";
import NavigateLink from "../components/NavigateLink";
export const meta: MetaFunction = () => [
@@ -26,7 +26,7 @@ export default function Index() {
</div>
</div>
<div className="mx-2">
- <BorderedContainerWithCaption caption="オンライン予選開催中 (3/21 決勝当日まで)">
+ <BorderedContainer>
<p className="text-gray-900 max-w-prose">
PHPer コードバトルは指示された動作をする PHP
コードをより短く書けた方が勝ち、という 1 対 1
@@ -35,7 +35,7 @@ export default function Index() {
PHPer コードバトルを実施します。ここでは短いコードが正義です!
可読性も保守性も放り投げた、イベントならではのコードをお楽しみください!
</p>
- </BorderedContainerWithCaption>
+ </BorderedContainer>
</div>
<div>
<NavigateLink to="/login">ログイン</NavigateLink>