reacord
{packageJson.description}
Get Startedimport packageJson from "reacord/package.json" import type { LoaderFunction } from "remix" import { Link, useLoaderData } from "remix" import LandingExample from "~/components/landing-example.mdx" import { MainNavigation } from "~/components/main-navigation" import type { ContentIndexEntry } from "~/helpers/create-index.server" import { createContentIndex } from "~/helpers/create-index.server" import { maxWidthContainer } from "~/styles" type LoaderData = ContentIndexEntry[] export const loader: LoaderFunction = async () => { const data: LoaderData = await createContentIndex("app/routes/docs/guides") return data } export default function Landing() { const data: LoaderData = useLoaderData() return (
{packageJson.description}
Get Started