feat: login form as a client component, theme toggle

This commit is contained in:
2025-07-17 16:49:46 +04:00
parent 0de352c323
commit 39b4d36a82
44 changed files with 14445 additions and 1 deletions

21
theme.ts Normal file
View File

@ -0,0 +1,21 @@
import { createTheme, MantineColorsTuple } from "@mantine/core";
const myColor: MantineColorsTuple = [
"#e2faff",
"#d4eff8",
"#afdce9",
"#87c8db",
"#65b7cf",
"#4aaac7",
"#3fa7c6",
"#2c92af",
"#1b829e",
"#00718c",
];
export const theme = createTheme({
colors: {
myColor,
},
primaryColor: "myColor",
});