diff --git a/app/[locale]/leaderboard/page.tsx b/app/[locale]/leaderboard/page.tsx new file mode 100644 index 0000000..6769ddb --- /dev/null +++ b/app/[locale]/leaderboard/page.tsx @@ -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 ( +
+ Leader Board +
+ ); +}; + +export default LeaderboardPage; \ No newline at end of file