Skip to content
Closed
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
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
}
61 changes: 26 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,37 +1,28 @@
<!doctype html>

Check failure on line 1 in index.html

View workflow job for this annotation

GitHub Actions / Prettier

index.html#L1

There are issues with this file's formatting, please run Prettier to fix the errors
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Create image assets quickly with the Blog Image Generator by Keitaro"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@KeitaroInc" />
<meta name="og:title" content="Blog Image Generator by Keitaro" />
<meta
name="og:description"
content="Create image assets quickly with the Blog Image Generator by Keitaro"
/>
<meta
property="og:image"
content="%PUBLIC_URL%/keitaro-blog-image-generator-post-cover.png"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Blog Image Generator by Keitaro</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Create image assets quickly with the Blog Image Generator by Keitaro" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@KeitaroInc" />
<meta name="og:title" content="Blog Image Generator by Keitaro" />
<meta name="og:description" content="Create image assets quickly with the Blog Image Generator by Keitaro" />
<meta property="og:image" content="/keitaro-blog-image-generator-post-cover.png" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<title>Blog Image Generator by Keitaro</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Loading
Loading