checks
Some checks are pending
/ deploy (push) Waiting to run

This commit is contained in:
Loyyd 2026-06-11 09:54:39 +02:00
parent 39f68f0051
commit 9d0a823351
23 changed files with 1158 additions and 31 deletions

13
src/pages/about.astro Normal file
View file

@ -0,0 +1,13 @@
---
import SiteLayout from "../components/SiteLayout.astro";
import TwoColumnPage from "../components/TwoColumnPage.astro";
import articleHtml from "../content/pages/about.html?raw";
---
<SiteLayout
title="About Us &#8211; FFWPU Ireland"
bodyClass="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-29 page-parent custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"
pathname="/about.html"
>
<TwoColumnPage articleHtml={articleHtml} />
</SiteLayout>