feat: add favorites page

This commit is contained in:
Kentai Radiquum 2024-07-16 13:08:43 +05:00
parent 484148ada6
commit 28efc5a98c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
10 changed files with 177 additions and 36 deletions
app/pages

22
app/pages/common.js Normal file
View file

@ -0,0 +1,22 @@
export const sort = {
descendingIcon: "material-symbols--sort",
ascendingIcon: "[transform:rotateX(180deg)] material-symbols--sort",
values: [
{
name: "Сначала новые",
value: "adding_descending",
},
{
name: "Сначала старые",
value: "adding_ascending",
},
{
name: "А-Я",
value: "alphabet_descending",
},
{
name: "Я-А",
value: "alphabet_ascending",
},
],
};