From e3c4bb2efa513973bc26949a8be62fbe66e31a4f Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> Date: Fri, 14 Mar 2025 23:33:56 +0100 Subject: Implement new page layouts for Home, Contact, Portfolio, and Trajectory; update header and footer for multilingual support --- src/layouts/PortfolioPageLayout.astro | 113 ++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 src/layouts/PortfolioPageLayout.astro (limited to 'src/layouts/PortfolioPageLayout.astro') diff --git a/src/layouts/PortfolioPageLayout.astro b/src/layouts/PortfolioPageLayout.astro new file mode 100644 index 0000000..0ade4ba --- /dev/null +++ b/src/layouts/PortfolioPageLayout.astro @@ -0,0 +1,113 @@ +--- +import Layout from "./Layout.astro"; +import { useTranslations } from "../i18n"; +import TechnologyBadge from "../partials/TechnologyBadge.astro"; + +const t = useTranslations(Astro.currentLocale); + +const schema = { + "@context": "https://schema.org", + "@type": "WebPage", + url: "https://www.costas.dev/portfolio", + headline: t.portfolioPage.headline, +}; +--- + + + + + {t.portfolioPage.headline} + + + + {t.portfolioPage.freelanceTitle} + + {t.portfolioPage.freelanceDesc} + + + + {t.portfolioPage.orderExtractorTitle} + + + + + + + + + {t.portfolioPage.touristInfoTitle} + + + + + + + + + {t.portfolioPage.wpConsultingTitle} + + + + + + + + {t.portfolioPage.ownProjectsTitle} + + {t.portfolioPage.ownProjectsDesc} + + + + {t.portfolioPage.personalWebTitle} + + {t.portfolioPage.personalWebDesc} + + + + + + + {t.portfolioPage.mientrenoTitle} + + + + + + + + + + + {t.portfolioPage.vigo360Title} + + + + + + + + + + + \ No newline at end of file -- cgit v1.3
{t.portfolioPage.freelanceDesc}
{t.portfolioPage.ownProjectsDesc}
{t.portfolioPage.personalWebDesc}