Skip to content

Commit a05e368

Browse files
committed
✨ feat: add twitter cad tag and change the description
1 parent 63953e4 commit a05e368

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

src/i18n/en.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"SEO_LANG": "en",
33
"SEO_LOCALE": "en_US",
44
"SEO_TITLE": "Carlos Jorge Rodríguez | Website",
5-
"SEO_DESCRIPTION": "Carlos Jorge Rodríguez's personal portfolio website. I show my most important github projects. The main goals of these projects is having fun and learn new technologies, good practices and try to make real creative ideas",
5+
"SEO_DESCRIPTION": "Carlos Jorge Rodríguez's personal portfolio website. I show my most important github projects, my experience, my articles and more profesional information.",
66
"INTRO_TITLE": "Hi, I am",
77
"INTRO_TITLE_AFTER_BR1": "Carlos Jorge",
88
"INTRO_TITLE_AFTER_BR2": "",
@@ -58,7 +58,6 @@
5858
"description": "Working for Opus EHR a healthcare platform that tracks leads and manages patient data, enhancing client engagement and increasing admissions.",
5959
"logoFile": "MyndGoals-logo.webp",
6060
"logoAlt": "MyndGoals logo"
61-
6261
},
6362
{
6463
"date": "March 2022",

src/i18n/es.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"SEO_LANG": "es",
33
"SEO_LOCALE": "es-ES",
44
"SEO_TITLE": "Carlos Jorge Rodríguez | Página web",
5-
"SEO_DESCRIPTION": "Portafolio personal de Carlos Jorge Rodríguez. Enseño mis proyectos más importantes de github. Mi principal meta con estos proyectos es divertirme programando y aprender nuevas tecnologías, buenas prácticas y tratar de llevar a cabo ideas creativas",
5+
"SEO_DESCRIPTION": "Portafolio personal de Carlos Jorge Rodríguez. Enseño mis proyectos más importantes de GitHub, experiencia laboral, artículos y más información personal",
66
"INTRO_TITLE": "Hola, Soy",
77
"INTRO_TITLE_AFTER_BR1": "Carlos Jorge,",
88
"INTRO_TITLE_AFTER_BR2": "",

src/layouts/Layout.astro

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,13 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
3434
property="og:image"
3535
content="https://carlosjorger.github.io/images/purple-logo.png"
3636
/>
37+
<meta name="twitter:card" content="summary_large_image" />
3738
<meta property="twitter:description" content={SEO_DESCRIPTION} />
3839
<meta property="twitter:title" content={SEO_TITLE} />
40+
<meta
41+
name="twitter:image"
42+
content="https://carlosjorger.github.io/images/purple-logo.png"
43+
/>
3944
<link rel="icon" type="image/svg+xml" href="/images/favicon.png" />
4045
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
4146
<link
@@ -53,10 +58,9 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
5358
<link rel="canonical" href={canonicalURL} />
5459
<title>{SEO_TITLE}</title>
5560
</head>
56-
<script
61+
<script
5762
src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.8.0/flowbite.min.js"
58-
is:inline
59-
/>
63+
is:inline></script>
6064
<body>
6165
<ViewTransitions />
6266
<slot />

0 commit comments

Comments
 (0)