shellphone.app/app/routes/index.tsx

15 lines
434 B
TypeScript
Raw Normal View History

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