-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #262 from barel-mishal/leaderboard
Page Leaderboard
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |