diff options
| author | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2025-03-14 23:33:56 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2025-03-14 23:33:56 +0100 |
| commit | e3c4bb2efa513973bc26949a8be62fbe66e31a4f (patch) | |
| tree | 75a46cbde3ec2d36cfd33bff63ae7c65d145c182 /src/layouts/TrajectoryPageLayout.astro | |
| parent | 54dab1e00b38693e96c801d0c5a020693a35bbda (diff) | |
Implement new page layouts for Home, Contact, Portfolio, and Trajectory; update header and footer for multilingual support
Diffstat (limited to 'src/layouts/TrajectoryPageLayout.astro')
| -rw-r--r-- | src/layouts/TrajectoryPageLayout.astro | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/layouts/TrajectoryPageLayout.astro b/src/layouts/TrajectoryPageLayout.astro new file mode 100644 index 0000000..1739a32 --- /dev/null +++ b/src/layouts/TrajectoryPageLayout.astro @@ -0,0 +1,81 @@ +--- +import { useTranslations } from "../i18n"; +import Layout from "./Layout.astro"; + +const t = useTranslations(Astro.currentLocale); + +const schema = { + "@context": "https://schema.org", + "@type": "WebPage", + url: "https://www.costas.dev/trajectory", + headline: t.trajectoryPage.headline, +}; +--- + +<Layout title={t.trajectoryPage.title} description={t.trajectoryPage.description}> + <script + is:inline + type="application/ld+json" + slot="head-jsonld" + set:html={JSON.stringify(schema)} + /> + + <h1>{t.trajectoryPage.headline}</h1> + + <p>{t.trajectoryPage.intro}</p> + + <h2>{t.trajectoryPage.techTitle}</h2> + + <p>{t.trajectoryPage.techDescription1}</p> + + <p>{t.trajectoryPage.techDescription2}</p> + + <h2>{t.trajectoryPage.educationTitle}</h2> + + <ul> + <li> + <strong>{t.trajectoryPage.efsetCert1}</strong> + {t.trajectoryPage.efsetCert2} <a + href="https://cert.efset.org/es/Yxzc9L" + >{t.trajectoryPage.viewCertificate}</a + > + </li> + + <li> + <strong>{t.trajectoryPage.azureDeveloperCert1}</strong> + {t.trajectoryPage.azureDeveloperCert2} <a + href="https://learn.microsoft.com/api/credentials/share/en-us/ariel-costas/E15072607CCF2DA9?sharingId=149A1CD9C13790F4" + >{t.trajectoryPage.viewCredential}</a + >. + </li> + + <li> + <strong>{t.trajectoryPage.azureDevOpsCert1}</strong> + {t.trajectoryPage.azureDevOpsCert2} <a + href="https://learn.microsoft.com/api/credentials/share/en-us/ariel-costas/5FB94876A1701595?sharingId=149A1CD9C13790F4" + >{t.trajectoryPage.viewCredential}</a + > + </li> + + <li> + <strong>{t.trajectoryPage.higherTechCert1}</strong> + {t.trajectoryPage.higherTechCert2} <a href="https://iesteis.es/">{t.trajectoryPage.higherTechCert3}</a> {t.trajectoryPage.higherTechCert4} + </li> + </ul> + + <h2>{t.trajectoryPage.experienceTitle}</h2> + + <h3>{t.trajectoryPage.estelaria1}</h3> + + <p>{t.trajectoryPage.estelaria2}</p> + + <p>{t.trajectoryPage.estelaria3}</p> + + <h3>{t.trajectoryPage.polygon1}</h3> + + <p>{t.trajectoryPage.polygon2}</p> + + <h2>{t.trajectoryPage.projectsTitle}</h2> + + <p set:html={t.trajectoryPage.projectsDescription} /> +</Layout> |
