--- import DefaultLayout from "../layouts/DefaultLayout.astro"; import Hero from "../components/hero/Hero.astro"; import SectionRenderer from "../components/sections/SectionRenderer.astro" import yaml from "js-yaml"; import fs from "fs"; const seo = yaml.load(fs.readFileSync("./src/content/home/seo.yaml", "utf8")); const hero = yaml.load(fs.readFileSync("./src/content/home/hero.yaml", "utf8")); ---