Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OG image fix: Added missing meta tags #1940

Merged
merged 1 commit into from
Jan 13, 2025
Merged
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
8 changes: 8 additions & 0 deletions app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
<head>
<title>Miru | Time tracking and invoicing</title>
<meta name="viewport" content="width=device-width,initial-scale=1">

<meta property="og:title" content="Miru | Time tracking and invoicing">
<meta property="og:description" content="Miru is an open-source tool for time tracking, invoice management, and accounting easy for small businesses worldwide.">
<meta property="og:image" content="<%= image_url('logo.jpg') %>">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:url" content="https://app.miru.so/">

<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_pack_tag "application" %>
Expand Down
Loading