Skip to content

Commit

Permalink
Fix search bug (#16)
Browse files Browse the repository at this point in the history
* Update leaderboard

* Update citation text

* Fix search bug

* Update page.tsx

---------

Co-authored-by: Yicheng Fu <[email protected]>
  • Loading branch information
sofyc and Yicheng Fu authored Feb 27, 2025
1 parent 2fdbc09 commit 1b8bb93
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
10 changes: 7 additions & 3 deletions app/leaderboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ export const metadata: Metadata = {
openGraph: {
title: 'Egonormia Leaderboard',
description: 'A large scale video dataset and a benchmark for evaluating frontier models\' understanding of physical social norms through videos.',
images: ['/images/psn/leaderboard-metadata.svg'],
images: [{
url: 'https://opensocialworld.org/images/psn/leaderboard-metadata.svg',
width: 1200,
height: 630,
}],
},
twitter: {
card: 'summary_large_image',
title: 'Egonormia Leaderboard',
description: 'A large scale video dataset and a benchmark for evaluating frontier models\' understanding of physical social norms through videos.',
images: ['/images/psn/leaderboard-metadata.svg'],
images: ['https://opensocialworld.org/images/psn/leaderboard-metadata.svg'],
},
};

Expand All @@ -39,4 +43,4 @@ export default function LeaderboardPage() {
</main>
</>
);
}
}
22 changes: 7 additions & 15 deletions components/config/docs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,17 @@ export const docsConfig: DocsConfig = {
href: "/",
},
{
title: "About Me",
href: "/#me",
title: "Articles",
href: "/articles",
},
{
title: "My Research",
href: "/#my-research",
title: "LeaderBoard",
href: "/leaderboard",
},
{
title: "FAQ",
href: "/#faq",
},
{
title: "Education",
href: "/#education",
},
{
title: "Calendar",
href: "/calendar",
},
title: "People",
href: "/people",
}
],
sidebarNav: [
],
Expand Down

0 comments on commit 1b8bb93

Please sign in to comment.