This commit is contained in:
2025-02-26 15:09:28 +01:00
parent 7228d5fae9
commit f0cde5ec20
12 changed files with 287 additions and 75 deletions

17
Gui/CompanyConf.qml Normal file
View File

@@ -0,0 +1,17 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
Item
{
property string name: "company"
anchors.fill: parent
Label
{
text: qsTr("Das Unternehmen")
anchors.centerIn: parent
font.pixelSize: 57
font.bold: true
}
}