Skip to content

Commit

Permalink
Merge pull request #262 from barel-mishal/leaderboard
Browse files Browse the repository at this point in the history
Page Leaderboard
  • Loading branch information
barel-mishal authored May 6, 2024
2 parents e061b18 + cebb1e9 commit 8c72cee
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions app/[locale]/leaderboard/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import { Metadata } from 'next';
import useTextDirection from '@/hooks/useTextDirection';

export const metadata: Metadata = {
title: 'לוח מובילים - Leaderboard',
description:
'צפו במובילי הקהילה ובתרומתם לפרויקטים בקוד פתוח. גלו את המשתמשים הפעילים ביותר ואת ההשפעה שלהם על הקהילה.',
openGraph: {
title: 'לוח מובילים - Leaderboard | מעקף',
description:
'צפו במובילי הקהילה ובתרומתם לפרויקטים בקוד פתוח. גלו את המשתמשים הפעילים ביותר ואת ההשפעה שלהם על הקהילה.',
url: 'https://maakaf-website.vercel.app/leaderboard',
siteName: 'Maakaf',
type: 'website',
images: [
{
url: 'https://maakaf-website.vercel.app/favicon.ico',
width: 600,
height: 600,
},
],
},
};

const LeaderboardPage: React.FC = () => {
const direction = useTextDirection();

return (
<div dir={direction}>
Leader Board
</div>
);
};

export default LeaderboardPage;

0 comments on commit 8c72cee

Please sign in to comment.