import type { LinksFunction, MetaFunction } from "@remix-run/node"; import { Links, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import type { PropsWithChildren } from "react"; import stylesheet from "~/tailwind.css?url"; import AboutMe from "./components/AboutMe"; import PageSkeleton from "./components/PageSkeleton"; export const links: LinksFunction = () => { return [ { rel: "stylesheet", href: stylesheet }, { rel: "icon", type: "image/png", href: "/icon.png" }, ]; }; export const meta: MetaFunction = () => [ { name: "title", content: "Hi, I'm Markus" }, { name: "description", content: "I help companies design and deliver digital products faster", }, { name: "keywords", content: "Frontend, development, software, User interfaces, React, Vue", }, ]; export const Layout = ({ children }: PropsWithChildren) => { return (