defmodule Geni3Org do @moduledoc """ Minimal metadata module for the Geni3 AI video generator website. """ @homepage "https://www.geni3.org" @summary "Geni3 is an AI video generator for text-to-video and image-to-video workflows." @doc "Returns the official Geni3 website URL." def homepage do @homepage end @doc "Returns a short product summary." def summary do @summary end end