aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/_index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/routes/_index.tsx')
-rw-r--r--frontend/app/routes/_index.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/app/routes/_index.tsx b/frontend/app/routes/_index.tsx
new file mode 100644
index 0000000..f39c7eb
--- /dev/null
+++ b/frontend/app/routes/_index.tsx
@@ -0,0 +1,9 @@
+import type { MetaFunction } from "@remix-run/node";
+
+export const meta: MetaFunction = () => {
+ return [{ title: "Albatross.swift" }];
+};
+
+export default function Index() {
+ return <p>iOSDC 2024 Albatross.swift</p>;
+}