Implement dashboard skeleton

This commit is contained in:
Jas Singh
2024-07-03 16:56:59 -07:00
parent f0366f3186
commit ce54b7a6d8
12 changed files with 192 additions and 9 deletions

View File

@@ -0,0 +1,43 @@
const Shortcuts = () => {
return Widget.Box({
class_name: "shortcuts-container",
children: [
Widget.Box({
class_name: "most-used-container",
children: [
Widget.Button({
class_name: "dashboard-button edge",
}),
Widget.Button({
class_name: "dashboard-button spotify",
}),
Widget.Button({
class_name: "dashboard-button discord",
}),
Widget.Button({
class_name: "dashboard-button search",
}),
],
}),
Widget.Box({
class_name: "utilities-container",
children: [
Widget.Button({
class_name: "dashboard-button utility",
}),
Widget.Button({
class_name: "dashboard-button utility",
}),
Widget.Button({
class_name: "dashboard-button utility",
}),
Widget.Button({
class_name: "dashboard-button utility",
}),
],
}),
],
});
};
export { Shortcuts };