2026-02-15 13:50:23 +01:00

36 lines
702 B
QML

import QtQuick
import qs
import qs.reusables
import Quickshell.Widgets
import QtQuick.Layouts
ClippingWrapperRectangle {
id: root
anchors.centerIn: parent
clip: true
color: Colors.surfaceContainerHigh
border.width: 1
border.color: Colors.primary
radius: 12
margin: 20
ColumnLayout {
id: pageLayout
spacing: 0
anchors.top: parent.top
CustomText {
topPadding: 10
text: "Welcome!"
font.pixelSize: 24
font.bold: true
}
CustomText {
text: "we love women here"
}
Item {
id: sping
Layout.fillHeight: true
}
}
}