This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/pages/rankingi.tsx
2023-01-07 12:34:59 +01:00

14 lines
338 B
TypeScript

import { SEO } from "../components/SEO";
const PageRankingi = () => {
const SEOdesc = `Strona w trakcie budowy - rankingi wiadomości i danych wśród użytkowników gractwa!`;
return (
<>
<SEO title="rankingi" description={SEOdesc} />
<main>Miejsce na stronkę od rankingów.</main>
</>
);
};
export default PageRankingi;