-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.jsx
37 lines (31 loc) · 973 Bytes
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import './App.css'
import Header from "./components/Header.jsx";
import { createTheme, ThemeProvider } from '@mui/material/styles';
import Home from "./components/Home.jsx";
import Contact from "./components/Contact.jsx";
import MyCarousels from "./carousel/MyCarousels.jsx";
import PageContainer from "./container/PageContainer.jsx";
import AboutMe from "./components/AboutMe.jsx";
const theme = createTheme({
palette: {
primary: { main: "#FF6500", contrastText: "#ffffff" },
secondary: { main: "#0B192C", contrastText: "#fff" },
},
typography: {
fontFamily: 'Poppins,sans-serif',
},
});
function App() {
return (
<ThemeProvider theme={theme}>
<Header/>
<Home/>
<PageContainer className="content">
<AboutMe/>
<MyCarousels/>
<Contact/>
</PageContainer>
</ThemeProvider>
)
}
export default App