Skip to content

Commit ff5b0e1

Browse files
meta: add SEO info (#14)
* 💄 meta: add SEO info * 🐛 fix: remove /n from content * 🚀 feat: add helmet and use different head for Download Page
1 parent 4cd71bb commit ff5b0e1

File tree

4 files changed

+53
-8
lines changed

4 files changed

+53
-8
lines changed

package-lock.json

+17-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"node-sass": "^4.13.0",
1616
"react": "^16.12.0",
1717
"react-dom": "^16.12.0",
18+
"react-helmet": "^6.1.0",
1819
"react-markdown": "^5.0.2",
1920
"react-router-dom": "^5.1.2",
2021
"react-scripts": "3.2.0",

public/index.html

+23-5
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,29 @@
99
<link crossorigin="anonymous"
1010
href="https://fonts.googleapis.com/css?family=Quicksand&display=swap"
1111
rel="stylesheet">
12-
<meta
13-
name="description"
14-
content="Invoicify"
15-
/>
12+
13+
<!-- Primary Meta Tags -->
14+
<title>Invoicify by 2AM Devs</title>
15+
<meta name="title" content="Invoicify by 2AM Devs">
16+
<meta name="description" content="Desktop app to simplify & digitalize
17+
billing process.">
18+
19+
<!-- Open Graph / Facebook -->
20+
<meta property="og:type" content="website">
21+
<meta property="og:url" content="https://invoicify.netlify.app/">
22+
<meta property="og:title" content="Invoicify by 2AM Devs">
23+
<meta property="og:description"
24+
content="Desktop app to simplify & digitalize billing process.">
25+
<meta property="og:image"
26+
content="https://raw.githubusercontent.com/2AMDevs/cdn/main/meta.png">
27+
<!-- Twitter -->
28+
<meta property="twitter:card" content="summary_large_image">
29+
<meta property="twitter:url" content="https://invoicify.netlify.app/">
30+
<meta property="twitter:title" content="Invoicify by 2AM Devs">
31+
<meta property="twitter:description"
32+
content="Desktop app to simplify & digitalize billing process.">
33+
<meta property="twitter:image"
34+
content="https://raw.githubusercontent.com/2AMDevs/cdn/main/meta.png">
1635
<!--
1736
manifest.json provides metadata used when your web app is installed on a
1837
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
@@ -27,7 +46,6 @@
2746
work correctly both with client-side routing and a non-root public URL.
2847
Learn how to configure a non-root public URL by running `npm run build`.
2948
-->
30-
<title>Invoicify</title>
3149
</head>
3250
<body>
3351
<noscript>You need to enable JavaScript to run this app.</noscript>

src/components/Download/index.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React, { useState, useEffect } from 'react'
2+
import { Helmet } from 'react-helmet'
23

34
import { Button, Loader } from '../Elements'
45

@@ -25,6 +26,13 @@ const Download = () => {
2526

2627
return (
2728
<div className="download-container">
29+
<Helmet>
30+
<title>Download Invoicify</title>
31+
<meta
32+
name="description"
33+
content="Download and Try Invoicify for free"
34+
/>
35+
</Helmet>
2836
<img
2937
className="download-container__bg-img"
3038
src="img/download/background.png"
@@ -39,7 +47,10 @@ const Download = () => {
3947
Get Invoicify for your PC
4048
</span>
4149
<div className="download-box__content__input-section">
42-
<a href={latestAsset.browser_download_url} download>
50+
<a
51+
href={latestAsset.browser_download_url}
52+
download
53+
>
4354
<Button
4455
type="submit"
4556
primary

0 commit comments

Comments
 (0)