diff --git a/app/index.tsx b/app/index.tsx new file mode 100644 index 0000000..98cd548 --- /dev/null +++ b/app/index.tsx @@ -0,0 +1,8 @@ +export function Welcome() { + return ( +
+

Welcome to Aindustries' casino

+

Mind that gambling isn't that dangerous

+
+ ); +} diff --git a/app/routes/home.tsx b/app/routes/home.tsx index 398e47c..5f4c806 100644 --- a/app/routes/home.tsx +++ b/app/routes/home.tsx @@ -1,9 +1,9 @@ import type { Route } from "./+types/home"; -import { Welcome } from "../welcome/welcome"; +import { Welcome } from "../index"; export function meta({}: Route.MetaArgs) { return [ - { title: "New React Router App" }, + { title: "Aindustries' casino" }, { name: "description", content: "Welcome to React Router!" }, ]; } diff --git a/app/welcome/logo-dark.svg b/app/welcome/logo-dark.svg deleted file mode 100644 index dd82028..0000000 --- a/app/welcome/logo-dark.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/welcome/logo-light.svg b/app/welcome/logo-light.svg deleted file mode 100644 index 7328492..0000000 --- a/app/welcome/logo-light.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/welcome/welcome.tsx b/app/welcome/welcome.tsx deleted file mode 100644 index 8ac6e1d..0000000 --- a/app/welcome/welcome.tsx +++ /dev/null @@ -1,89 +0,0 @@ -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: ( - - - - ), - }, -]; diff --git a/public/favicon.ico b/public/favicon.ico index 5dbdfcd..fd397be 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ