kavita-upload-helper/ui/pages/about_page.slint

13 lines
327 B
Text
Raw Normal View History

import { VerticalBox, Palette } from "std-widgets.slint";
export component AboutPage inherits VerticalBox {
Rectangle {
border-width: 1px;
border-radius: 4px;
border-color: Palette.border;
background: Palette.alternate-background;
Text {
text: "ToDo: Add Author Info and Link to Repository";
}
}
}