Skip to content

Commit

Permalink
fundraisers page meta
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-justin committed Jan 26, 2025
1 parent 44b4675 commit a2cdb3a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/Funds/Funds.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type { FundsPage } from "@better-giving/fundraiser";
import { fundsParams } from "@better-giving/fundraiser/schema";
import { useFetcher, useSearchParams } from "@remix-run/react";
import type { LoaderFunction } from "@vercel/remix";
import type { LoaderFunction, MetaFunction } from "@vercel/remix";
import { useCachedLoaderData } from "api/cache";
import { metas } from "helpers/seo";
import debounce from "lodash/debounce";
import { Search } from "lucide-react";
import type { ChangeEventHandler } from "react";
Expand All @@ -24,6 +25,12 @@ export const loader: LoaderFunction = async ({ request }) => {
return page;
};

export const meta: MetaFunction = () =>
metas({
title: "Fundraisers",
description: "Access our free fundraising technology and tools.",
});

export { ErrorBoundary } from "components/error";
export default function Funds() {
const page1 = useCachedLoaderData<FundsPage>();
Expand Down

0 comments on commit a2cdb3a

Please sign in to comment.