Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

Commit 02465fa

Browse files
committed
📊 GA Incluido, OG Image
1 parent 9aa3437 commit 02465fa

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ yarn-error.log*
2929
.env.development.local
3030
.env.test.local
3131
.env.production.local
32+
.env*
3233

3334
# vercel
3435
.vercel

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
7-
"build": "next build",
7+
"build": "next build && next export",
88
"start": "next start"
99
},
1010
"dependencies": {

src/components/Layout.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Layout = ({ title, description, keywords, children }) => {
3333
{/* --- Open Graph --- */}
3434
<meta property = "og:type" content = "website" />
3535
<meta property = "og:url" content = "https://www.trejocode.com/" />
36-
<meta property = "og:image" content = "https://res.cloudinary.com/trejocode/image/upload/v1585867983/Trejocode/og_ccf7n6.jpg" />
36+
<meta property = "og:image" content = "https://res.cloudinary.com/trejocode/image/upload/v1599595751/Trejocode/corecss-min_m9v9tf.jpg" />
3737
<meta property = "og:title" content = { title ? title : "Core CSS" } />
3838
<meta property = "og:description" content = { description ? description : "Hoja de estilos basada en flexbox para maquetar estructuras flexibles" } />
3939
{/* -- IOS Meta -- */}
@@ -47,7 +47,7 @@ const Layout = ({ title, description, keywords, children }) => {
4747
<meta name = "twitter:card" content = "summary" />
4848
<meta name = "twitter:url" content = "https://www.trejocode.com" />
4949
<meta name = "twitter:title" content = { title ? title : "Core CSS" } />
50-
<meta name = "twitter:image" content = "https://res.cloudinary.com/trejocode/image/upload/v1585867983/Trejocode/og_ccf7n6.jpg" />
50+
<meta name = "twitter:image" content = "https://res.cloudinary.com/trejocode/image/upload/v1599595751/Trejocode/corecss-min_m9v9tf.jpg" />
5151
<meta name = "twitter:description" content = { description ? description : "Hoja de estilos basada en flexbox para maquetar estructuras flexibles" } />
5252
</Head>
5353
<Header />

0 commit comments

Comments
 (0)