cleaner landing page

This commit is contained in:
m5r
2022-07-09 01:34:18 +02:00
parent 9e783b506d
commit 27f8ed4c7c
29 changed files with 425 additions and 492 deletions

View File

@ -1,10 +1,13 @@
import type { LinksFunction, MetaFunction } from "@remix-run/node";
import IndexPage from "~/features/public-area/pages";
import joinWaitlistAction from "~/features/public-area/actions/index";
import IndexPage from "~/features/public-area/pages/index";
import { getSeoMeta } from "~/utils/seo";
import styles from "../styles/index.css";
export const action = joinWaitlistAction;
export const meta: MetaFunction = () => ({
...getSeoMeta({ title: "", description: "Welcome to Remixtape!" }),
});