aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/_index.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-01 22:28:29 +0900
committernsfisis <nsfisis@gmail.com>2024-08-01 22:28:29 +0900
commit4b206bf707ef5d092ea9579fe82a06ee1d6e0337 (patch)
treef3eb93e716cf1c6da2bccc112ce3b7cebff95222 /frontend/app/routes/_index.tsx
parent7ccf1da2f7448d93f8209982813e4097af13fd70 (diff)
parent3a59aa595b1674e9286f4df0035b5b1e38e6957d (diff)
downloadphperkaigi-2025-albatross-4b206bf707ef5d092ea9579fe82a06ee1d6e0337.tar.gz
phperkaigi-2025-albatross-4b206bf707ef5d092ea9579fe82a06ee1d6e0337.tar.zst
phperkaigi-2025-albatross-4b206bf707ef5d092ea9579fe82a06ee1d6e0337.zip
Merge branch 'feat/biome'
Diffstat (limited to 'frontend/app/routes/_index.tsx')
-rw-r--r--frontend/app/routes/_index.tsx36
1 files changed, 18 insertions, 18 deletions
diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx
index b5951ab..c56d4b2 100644
--- a/frontend/app/routes/_index.tsx
+++ b/frontend/app/routes/_index.tsx
@@ -2,25 +2,25 @@ import type { MetaFunction } from "@remix-run/node";
import { Link } from "@remix-run/react";
export const meta: MetaFunction = () => {
- return [{ title: "iOSDC Japan 2024 Albatross.swift" }];
+ return [{ title: "iOSDC Japan 2024 Albatross.swift" }];
};
export default function Index() {
- return (
- <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 Japan 2024 Albatross.swift
- </h1>
- <p>
- <Link
- to="/login"
- className="text-lg text-white bg-blue-500 px-4 py-2 rounded hover:bg-blue-600 transition duration-300"
- >
- Login
- </Link>
- </p>
- </div>
- </div>
- );
+ return (
+ <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 Japan 2024 Albatross.swift
+ </h1>
+ <p>
+ <Link
+ to="/login"
+ className="text-lg text-white bg-blue-500 px-4 py-2 rounded hover:bg-blue-600 transition duration-300"
+ >
+ Login
+ </Link>
+ </p>
+ </div>
+ </div>
+ );
}