Initial commit.

This commit is contained in:
2025-03-29 08:01:13 -04:00
commit 59acdc48fa
10 changed files with 878 additions and 0 deletions

20
qml/main.qml Normal file
View File

@@ -0,0 +1,20 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import "Menu"
ApplicationWindow {
height: 800
title: "CLIDE"
visible: true
width: 1200
menuBar: ClideMenuBar {
}
Rectangle {
anchors.fill: parent
color: "#1e1f22" // Dark background
}
}