Skip to content

Commit 932fa84

Browse files
committed
feat: UI update
1 parent 9de3db1 commit 932fa84

File tree

12 files changed

+384
-18244
lines changed

12 files changed

+384
-18244
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
cache: npm
2222

2323
- name: Install dependencies
24-
run: npm ci
24+
run: npm ci --peer-deps
2525
- name: Build website
2626
run: npm run build
2727

@@ -48,4 +48,4 @@ jobs:
4848
steps:
4949
- name: Deploy to production server
5050
id: deployment
51-
uses: actions/deploy-pages@v4
51+
uses: actions/deploy-pages@v4

package-lock.json

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

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
"@emotion/styled": "^11.11.5",
2424
"@mdx-js/react": "^3.0.0",
2525
"@mui/icons-material": "^5.15.16",
26-
"@mui/material": "^5.15.16",
26+
"@mui/material": "^5.15.20",
27+
"@mui/styles": "^5.15.20",
2728
"clsx": "^2.0.0",
29+
"framer-motion": "^11.2.10",
2830
"prism-react-renderer": "^2.3.0",
2931
"react": "^18.0.0",
3032
"react-dom": "^18.0.0",

src/components/App.jsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { ThemeProvider, createTheme } from "@mui/material/styles";
2+
// import Services from "./Services";
3+
import Mentors from "./Mentors";
4+
import Courses from "./Courses";
5+
import Partners from "./Partners";
6+
import FAQ from "./FAQ";
7+
8+
const theme = createTheme({
9+
palette: {
10+
primary: {
11+
main: "#1b5e20",
12+
},
13+
secondary: {
14+
main: "#f5f5f5",
15+
},
16+
},
17+
});
18+
function App() {
19+
return (
20+
<ThemeProvider theme={theme}>
21+
<Mentors />
22+
<Courses />
23+
<Partners />
24+
<FAQ />
25+
</ThemeProvider>
26+
);
27+
}
28+
29+
export default App;

src/components/CustomDivider.jsx

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

src/components/Hero/Founder.jsx

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

0 commit comments

Comments
 (0)