mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
22 lines
424 B
Lua
22 lines
424 B
Lua
-- Header logo section
|
|
|
|
---@class LogoComponent
|
|
---@field type string
|
|
---@field url string
|
|
---@field title string
|
|
---@field link string
|
|
|
|
---@param logo_url? string
|
|
---@param title? string
|
|
---@return LogoComponent
|
|
local function logo_section(logo_url, title)
|
|
return {
|
|
type = "logo",
|
|
url = logo_url or "/logo.svg",
|
|
title = title or "MetaBuilder",
|
|
link = "/"
|
|
}
|
|
end
|
|
|
|
return logo_section
|