feat: move to nextjs

This commit is contained in:
apoorvlathey
2024-05-07 00:18:18 +10:00
parent 602ae4389e
commit 032785a316
49 changed files with 9867 additions and 8425 deletions

27
style/theme.ts Normal file
View File

@@ -0,0 +1,27 @@
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const colors = {
brand: {
black: "#101010",
lightBlack: "#1a1a1a",
},
};
const config: ThemeConfig = {
initialColorMode: "dark",
useSystemColorMode: false,
};
const theme = extendTheme({
styles: {
global: {
body: {
bg: "brand.black",
},
},
},
config,
colors,
});
export default theme;