import type { MetaFunction, LinksFunction } from "@remix-run/node"; import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import styles from "~/styles.css"; import { Analytics } from "@vercel/analytics/react"; export const meta: MetaFunction = () => ({ charset: "utf-8", title: "Blog | Kitchen Sink", viewport: "width=device-width,initial-scale=1", }); export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }]; export default function App() { return (