Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { H1 } from "@/components/datacite/Headings";
import InfoCard from "@/components/InfoCard";
import DisplayEntities from "./DisplayEntities";
import SearchEntities from "./SearchEntities";
import { ALL_OF_DATACITE_ID } from "@/constants";

export default async function Page({ searchParams }: PageProps<"/">) {
const { query = undefined } = await searchParams;
Expand Down Expand Up @@ -36,7 +37,19 @@ function InfoCards() {
<InfoCard
icon={Search}
title="What can I explore?"
body="Search for a DataCite Member, Consortium Organization, or Repository to view a metadata quality snapshot and explore opportunities for improvement."
body={
<>
Search for a DataCite Member, Consortium Organization, or Repository
to view a metadata quality snapshot and explore opportunities for
improvement. You can also view a{" "}
<Link
href={ALL_OF_DATACITE_ID}
className="text-datacite-blue-light"
>
snapshot for all DataCite metadata.
</Link>
</>
}
/>
<InfoCard
icon={BookOpen}
Expand Down