Skip to content

Commit

Permalink
Merge branch 'main' into style/update-style-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
karnelll authored Oct 25, 2024
2 parents 9835cb0 + 46584d0 commit 622d79e
Show file tree
Hide file tree
Showing 22 changed files with 499 additions and 178 deletions.
137 changes: 133 additions & 4 deletions fe/package-lock.json

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

6 changes: 5 additions & 1 deletion fe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,18 @@
"prepare": "husky install"
},
"dependencies": {
"@react-spring/web": "^9.7.5",
"@use-gesture/react": "^10.3.1",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"next": "14.2.13",
"next-auth": "^4.24.8",
"react": "^18",
"react-dom": "^18",
"winston": "^3.14.2"
"tailwind-scrollbar-hide": "^1.1.7",
"winston": "^3.14.2",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/navermaps": "^3.7.8",
Expand Down
3 changes: 3 additions & 0 deletions fe/public/svg/Grabber.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions fe/public/svg/add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions fe/public/svg/arrow-back.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions fe/public/svg/edit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions fe/public/svg/my-location.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions fe/public/svg/refresh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions fe/public/svg/share.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 3 additions & 10 deletions fe/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"use client";

import "../styles/globals.css";
import Script from "next/script";

export default function RootLayout({
children,
Expand All @@ -11,20 +10,14 @@ export default function RootLayout({
return (
<html lang="en">
<body>
<header>
{/* <header>
<nav>
<a href="/">Home</a>
<a href="/dashboard">Dashboard</a>
</nav>
</header>
</header> */}
<main>{children}</main>
<footer>© 2024 My App</footer>

{/* 네이버 지도 API 스크립트 로드 */}
<Script
src={`https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=${process.env.NEXT_PUBLIC_NAVER_MAP_CLIENT_ID}&submodules=geocoder`}
strategy="afterInteractive"
/>
{/* <footer>© 2024 My App</footer> */}
</body>
</html>
);
Expand Down
Loading

0 comments on commit 622d79e

Please sign in to comment.