aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/_index.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-30 01:08:07 +0900
committernsfisis <nsfisis@gmail.com>2024-08-30 01:08:09 +0900
commitf8dc194ed82c2181cf466927514cfe08a2429725 (patch)
treed69544f16ad9663f4c3fa7618f41da679c3b05de /frontend/app/routes/_index.tsx
parent9543a2ec409b209eb2a415a68c5cd6b83ef43702 (diff)
downloadiosdc-japan-2024-albatross-f8dc194ed82c2181cf466927514cfe08a2429725.tar.gz
iosdc-japan-2024-albatross-f8dc194ed82c2181cf466927514cfe08a2429725.tar.zst
iosdc-japan-2024-albatross-f8dc194ed82c2181cf466927514cfe08a2429725.zip
feat(frontend): update home page
Diffstat (limited to 'frontend/app/routes/_index.tsx')
-rw-r--r--frontend/app/routes/_index.tsx15
1 files changed, 12 insertions, 3 deletions
diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx
index baa3909..808302d 100644
--- a/frontend/app/routes/_index.tsx
+++ b/frontend/app/routes/_index.tsx
@@ -1,7 +1,7 @@
import type { LoaderFunctionArgs, MetaFunction } from "@remix-run/node";
+import { Link } from "@remix-run/react";
import { ensureUserNotLoggedIn } from "../.server/auth";
import BorderedContainer from "../components/BorderedContainer";
-import NavigateLink from "../components/NavigateLink";
export const meta: MetaFunction = () => [
{ title: "iOSDC Japan 2024 Albatross.swift" },
@@ -38,8 +38,17 @@ export default function Index() {
</p>
</BorderedContainer>
</div>
- <div>
- <NavigateLink to="/login">ログイン</NavigateLink>
+ <div className="mt-4">
+ <p className="mb-2">
+ 追記:
+ イベントは終了しました。ご参加いただいたみなさま、ありがとうございました!
+ </p>
+ <Link
+ to="https://blog.iosdc.jp/2024/08/30/iosdc-japan-2024-swift-code-battle/"
+ className="underline underline-offset-4 text-pink-600 hover:text-pink-500 transition duration-300"
+ >
+ 試合結果はこちらのスタッフブログで公開しています。
+ </Link>
</div>
</div>
);