Skip to content

Commit

Permalink
feat: seo?
Browse files Browse the repository at this point in the history
  • Loading branch information
rexdotsh committed Dec 5, 2024
1 parent f82eecd commit d20c672
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
Binary file added public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Projects() {
visit beta!
</a>
</div>
<p class="text-sm text-neutral-400">a fast meme and profile picture editor packed with features, optimized to run on low end devices.</p>
<p class="text-sm text-neutral-400">a meme and pfp editor packed with features, built to run on low end devices.</p>
</div>
</div>
</div>
Expand Down
17 changes: 17 additions & 0 deletions src/entry-server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@ export default createHandler(() => (
<title>~/org/flora</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/image.png" />

<meta name="title" content="~/org/flora" />
<meta name="description" content="random utilities for the web" />

<meta property="og:type" content="website" />
<meta property="og:url" content="https://flora.tf" />
<meta property="og:title" content="~/org/flora" />
<meta property="og:description" content="random utilities for the web" />
<meta property="og:image" content="/og-image.png" />

<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://flora.tf" />
<meta property="twitter:title" content="~/org/flora" />
<meta property="twitter:description" content="random utilities for the web" />
<meta property="twitter:image" content="/og-image.png" />

<meta name="theme-color" content="#000000" />
{assets}
</head>
<body>
Expand Down

0 comments on commit d20c672

Please sign in to comment.