feat: initial commit (migrate from old flowy monorepo)

This commit is contained in:
talksik
2025-03-27 12:00:38 -07:00
commit 83906ac940
105 changed files with 1558 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
pragma Singleton
import QtQuick
Item {
property alias dotrice: dotrice.font.family
property alias dotriceBold: dotriceBold.font.family
property alias dotriceCondensed: dotriceCondensed.font.family
property alias plusJakartaSans: plusJakartaSans.font.family
FontLoader {
id: dotrice
source: "qrc:/live.flowy/imports/DesignSystem/fonts/dotrice/Dotrice-Regular.otf"
}
FontLoader {
id: dotriceBold
source: "qrc:/live.flowy/imports/DesignSystem/fonts/dotrice/Dotrice-Bold.otf"
}
FontLoader {
id: dotriceCondensed
source: "qrc:/live.flowy/imports/DesignSystem/fonts/dotrice/Dotrice-Condensed.otf"
}
FontLoader {
id: plusJakartaSans
source: "qrc:/live.flowy/imports/DesignSystem/fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf"
}
}