diff --git a/src/config/index.ts b/src/config/index.ts index 00898c2..b60eac2 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -1,9 +1,9 @@ import { createPublicClient, http } from 'viem'; import { mainnet } from 'viem/chains'; import { Config } from '~/types'; -import { getCustomThemes } from './Theme'; import { getConstants } from './constants'; import { getEnv } from './env'; +import { getCustomThemes } from './themes'; // this provider if for load data when the user is disconnected export const publicClient = createPublicClient({ diff --git a/src/config/Theme/index.ts b/src/config/themes/index.ts similarity index 100% rename from src/config/Theme/index.ts rename to src/config/themes/index.ts diff --git a/src/config/Theme/muiThemeConfig.ts b/src/config/themes/muiThemeConfig.ts similarity index 100% rename from src/config/Theme/muiThemeConfig.ts rename to src/config/themes/muiThemeConfig.ts diff --git a/src/config/Theme/rainbowTheme.ts b/src/config/themes/rainbowTheme.ts similarity index 100% rename from src/config/Theme/rainbowTheme.ts rename to src/config/themes/rainbowTheme.ts diff --git a/src/config/Theme/theme.ts b/src/config/themes/theme.ts similarity index 100% rename from src/config/Theme/theme.ts rename to src/config/themes/theme.ts