My landing page, written in Astro hayden.moe
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: posts index meta

+5 -1
+5 -1
src/app/routes/posts._index.tsx
··· 1 - import { json, LoaderFunctionArgs } from '@remix-run/cloudflare'; 1 + import { json, LoaderFunctionArgs, MetaFunction } from '@remix-run/cloudflare'; 2 2 import { useLoaderData } from '@remix-run/react'; 3 3 import { getPosts } from 'src/atproto/getPosts'; 4 4 import { WhtwndBlogEntryView } from 'src/types'; 5 5 import { FormattedDate } from '../components/formatted-date'; 6 6 import Markdown from 'react-markdown'; 7 + 8 + export const meta: MetaFunction = () => [ 9 + { title: 'hayden@web ~/posts' }, 10 + ]; 7 11 8 12 export const loader = async ({ context }: LoaderFunctionArgs) => { 9 13 const posts = await getPosts(context, undefined);