2022-05-14 10:22:06 +00:00
|
|
|
import type { LinksFunction, MetaFunction } from "@remix-run/node";
|
|
|
|
|
2022-07-08 23:34:18 +00:00
|
|
|
import joinWaitlistAction from "~/features/public-area/actions/index";
|
|
|
|
import IndexPage from "~/features/public-area/pages/index";
|
2022-05-14 10:22:06 +00:00
|
|
|
import { getSeoMeta } from "~/utils/seo";
|
|
|
|
|
|
|
|
import styles from "../styles/index.css";
|
|
|
|
|
2022-07-08 23:34:18 +00:00
|
|
|
export const action = joinWaitlistAction;
|
|
|
|
|
2022-05-14 10:22:06 +00:00
|
|
|
export const meta: MetaFunction = () => ({
|
|
|
|
...getSeoMeta({ title: "", description: "Welcome to Remixtape!" }),
|
|
|
|
});
|
|
|
|
|
|
|
|
export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }];
|
|
|
|
|
|
|
|
export default IndexPage;
|