import { MetaFunction } from "@remix-run/react"; export const meta: MetaFunction = () => { return [ { title: "My first Post" }, { name: "description", content: "This is my first post?" }, { name: "keywords", content: "Paul W, Paul W Portfolio, Paul W Profile, Paul W Remix", }, ]; }; export default function myfirstpost() { return (
{/* Hero */}

My First (useless) Blog Post

Somehow have to fill the empty space 🤷


{/* Content */}

Sorry, no content to see!

); }