From 014b29bc22b1c207a03dd560051ecdd5df63f0b1 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Wed, 6 May 2026 21:56:00 +0900 Subject: Initial commit from create-react-router --- app/welcome/welcome.tsx | 89 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 app/welcome/welcome.tsx (limited to 'app/welcome/welcome.tsx') diff --git a/app/welcome/welcome.tsx b/app/welcome/welcome.tsx new file mode 100644 index 0000000..8ac6e1d --- /dev/null +++ b/app/welcome/welcome.tsx @@ -0,0 +1,89 @@ +import logoDark from "./logo-dark.svg"; +import logoLight from "./logo-light.svg"; + +export function Welcome() { + return ( +
+
+
+
+ React Router + React Router +
+
+
+ +
+
+
+ ); +} + +const resources = [ + { + href: "https://reactrouter.com/docs", + text: "React Router Docs", + icon: ( + + + + ), + }, + { + href: "https://rmx.as/discord", + text: "Join Discord", + icon: ( + + + + ), + }, +]; -- cgit v1.2.3