ContactSection add, zmiany w MapGoogle

This commit is contained in:
dm
2025-11-21 12:09:45 +01:00
parent f42a242d9c
commit 0eaebc2faf
10 changed files with 448 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
import DefaultLayout from "../layouts/DefaultLayout.astro";
import Hero from "../components/hero/Hero.astro";
import SectionRenderer from "../components/sections/SectionRenderer.astro"
import SectionContact from "../components/sections/SectionContact.astro";
import yaml from "js-yaml";
import fs from "fs";
@@ -13,4 +14,5 @@ const hero = yaml.load(fs.readFileSync("./src/content/home/hero.yaml", "utf8"));
<DefaultLayout seo={seo}>
<Hero {...hero} />
<SectionRenderer src="./src/content/site/site.section.yaml" />
<SectionContact />
</DefaultLayout>