first commit

This commit is contained in:
2025-07-26 22:02:49 +03:00
commit a6d92c8bbb
5 changed files with 243 additions and 0 deletions

15
theme.ts Normal file
View File

@ -0,0 +1,15 @@
"use client"
import { createTheme } from "@mantine/core"
export const theme = createTheme({
breakpoints: {
xs: "36em",
sm: "48em",
md: "62em",
lg: "75em",
xl: "88em",
},
})
export default theme