/* site.jsx — static site configuration (sections + identity) */
(function () {
  const SECTIONS = {
    recipes: { label: "Recipes", blurb: "Everything I cook and want to remember — or share when a friend asks." },
    ingridients: { label: "Ingredients", blurb: "Opinions on specific ingredients — quality, value and why they matter." },
    techniques: { label: "Techniques", blurb: "General methods that aren't tied to one recipe: pasteurization, searing, frameworks." },
  };

  const SITE = {
    title: "AmosCooks",
    tagline: "I like cooking. Possibly to an unhealthy degree.",
    about:
      "This site documents my cooking adventures. It's meant to be a private place to share recipes directly with friends when they ask — and to help me keep track of my own creations.",
    status: "Still under development · intended for private use",
  };

  Object.assign(window, { SECTIONS, SITE });
})();
