Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
rel="stylesheet"
/>

<title>ReactPlay</title>
<title>
ReactPlay - One app to learn, create, and share ReactJS projects.
</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
6 changes: 3 additions & 3 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
User-agent: *
Disallow:
Sitemap: https://reactplay.io/sitemap.xml
23 changes: 23 additions & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">

<url>
<loc>https://www.reactplay.io/</loc>
<lastmod>2022-05-23T15:20:03+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://www.reactplay.io/plays</loc>
<lastmod>2022-05-23T15:20:03+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://www.reactplay.io/ideas</loc>
<lastmod>2022-05-23T15:20:03+00:00</lastmod>
<priority>0.80</priority>
</url>
</urlset>
9 changes: 7 additions & 2 deletions src/meta/DefMeta.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ function DefMeta() {
<meta property="og:type" content="website" />
<meta property="og:site_name" content="ReactPlay" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="300" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="628" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="description"
Expand Down Expand Up @@ -36,6 +36,11 @@ function DefMeta() {
content="Start React Code Arena with ReactPlay"
data-react-helmet="true"
/>
<meta
property="og:url"
content="https://reactplay.io"
data-react-helmet="true"
/>
<meta
name="twitter:title"
content="ReactPlay - One app to learn, create, and share ReactJS projects."
Expand Down