Skip to content

Commit 4c70e99

Browse files
committed
Major changes
1 parent 19d6946 commit 4c70e99

22 files changed

+94
-26894
lines changed

apps/app/configs/theme.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
token: {
3+
colorPrimary: "#722ed1",
4+
colorInfo: "#722ed1",
5+
},
6+
};

apps/app/package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {
6-
"dev": "npm run next:dev",
7-
"build": "npm run next:build",
6+
"dev": "next dev --port 3002",
7+
"build": "next build",
88
"start": "next start",
99
"lint": "npm run lint:fix",
1010
"lint:fix": "next lint --fix",
11-
"lint:check": "next lint",
12-
"next": "next",
13-
"next:build": "next build",
14-
"next:dev": "next dev --port 3002"
11+
"lint:check": "next lint"
1512
},
1613
"dependencies": {
1714
"@ant-design/cssinjs": "^1.5.6",
@@ -37,7 +34,6 @@
3734
"eslint": "^8.23.0",
3835
"eslint-config-coderdojobraga": "*",
3936
"next-transpile-modules": "9.0.0",
40-
"tailwind-config-coderdojobraga": "*",
4137
"tsconfig": "*",
4238
"typescript": "^4.5.3"
4339
}

apps/app/pages/_app.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { AuthProvider, ThemeProvider } from "@coderdojobraga/ui";
88

99
import "~/styles/globals.css";
1010

11+
import theme from "~/configs/theme";
12+
1113
const queryClient = new QueryClient();
1214

1315
function Shuriken({ Component, pageProps }: AppProps) {
@@ -64,7 +66,7 @@ function Shuriken({ Component, pageProps }: AppProps) {
6466
return (
6567
<ThemeProvider>
6668
<QueryClientProvider client={queryClient}>
67-
<ConfigProvider form={{ validateMessages }} locale={ptPT}>
69+
<ConfigProvider form={{ validateMessages }} locale={ptPT} theme={theme}>
6870
<AuthProvider>
6971
<Head>
7072
<title>CoderDojo Braga</title>

apps/app/styles/globals.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
@import "~/styles/tailwind.css";
2-
3-
@import "~/styles/antd.css";
4-
51
html {
62
overflow-x: hidden;
73
}

apps/app/styles/koi/fish1-animation.css

Lines changed: 0 additions & 104 deletions
This file was deleted.

apps/app/styles/koi/fish2-animation.css

Lines changed: 0 additions & 104 deletions
This file was deleted.

apps/app/styles/koi/fish3-animation.css

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)