Skip to content

Commit ab252bb

Browse files
committed
feat: add public dir
1 parent a08732f commit ab252bb

File tree

5 files changed

+34
-0
lines changed

5 files changed

+34
-0
lines changed

public/ads.txt

Whitespace-only changes.

public/favicon.ico

686 Bytes
Binary file not shown.

public/index.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta name="description" content="Template for create react app using webpack and typescript." />
8+
<meta
9+
name="keywords"
10+
content="react, typescript, webpack, react-router, styled-components, i18next, eslint, prettier, husky, commitlint"
11+
/>
12+
<meta name="robots" content="index, follow" />
13+
<meta name="author" content="Martik Avagyan <dev@martikavagyan.com> (https://github.com/m-avagyan)" />
14+
<title>Webpack React TypeScript Template</title>
15+
<link rel="sitemap" type="application/xml" href="/sitemap.xml" />
16+
</head>
17+
<body>
18+
<noscript>You need to enable JavaScript to run this app.</noscript>
19+
<div id="root"></div>
20+
</body>
21+
</html>

public/robots.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://www.<your-domain>/sitemap.xml

public/sitemap.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://www.your-domain.com/</loc>
5+
<lastmod>2023-08-06</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)