--- import Head from "@components/Head.astro"; import Nav from "@components/Nav.astro"; // import Footer from "@components/Footer.astro"; import { execa } from "execa"; import "@styles/global.sass"; const { title, description } = Astro.props; const { stdout: gitCommit } = await execa("git", ["rev-parse", "HEAD"]); ---