Skip to content

Commit

Permalink
Merge pull request #109 from Beside-Potenday/seungbeom
Browse files Browse the repository at this point in the history
반응형 웹 헤더 구성
  • Loading branch information
seung365 authored Aug 19, 2024
2 parents ea091bc + 7598161 commit 6bfa846
Show file tree
Hide file tree
Showing 17 changed files with 383 additions and 21 deletions.
79 changes: 74 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"axios": "^1.7.2",
"framer-motion": "^11.3.8",
"framer-motion": "^11.3.28",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.25.1",
"react-scripts": "5.0.1",
"swiper": "^11.1.9",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.6.0",
Expand Down Expand Up @@ -63,6 +65,7 @@
]
},
"devDependencies": {
"@types/react-responsive": "^8.0.8",
"craco-alias": "^3.0.1"
}
}
10 changes: 10 additions & 0 deletions public/images/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions public/images/menuHamburger.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/images/mobileLookLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/images/mobileTestersLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 4 additions & 7 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
import { Routes } from './routes';
import { MailProvider } from './Provider/MailContext';
import { ChakraProvider } from '@chakra-ui/react';
import { theme } from '@/styles/variants/index';
import { QueryClientProvider } from '@tanstack/react-query';
import { queryClient } from './api';
import { AuthProvider } from './Provider/Auth';
import Providers from './Provider/Providers';

const App = () => {
return (
<ChakraProvider theme={theme}>
<QueryClientProvider client={queryClient}>
<MailProvider>
<AuthProvider>
<Routes />
</AuthProvider>
</MailProvider>
<Providers>
<Routes />
</Providers>
</QueryClientProvider>
</ChakraProvider>
);
Expand Down
Loading

0 comments on commit 6bfa846

Please sign in to comment.