diff --git a/src/leek/qml/ModPage.qml b/src/leek/qml/ModPage.qml index 1af9afc..0d1c9ea 100644 --- a/src/leek/qml/ModPage.qml +++ b/src/leek/qml/ModPage.qml @@ -31,12 +31,22 @@ Kirigami.Page { GridLayout { id: headerContents - ColumnLayout { - Controls.Label { - text: `Name: ${mod.name}` + RowLayout { + // Icon + Kirigami.Icon { + implicitHeight: Kirigami.Units.iconSizes.huge + implicitWidth: implicitHeight + source: "package-x-generic" } - Controls.Label { - text: `Author placeholder` + + // Name and author + ColumnLayout { + Controls.Label { + text: `Name: ${mod.name}` + } + Controls.Label { + text: `Author placeholder` + } } } }