diff --git a/apps/web/app/(view)/(main)/layout.tsx b/apps/web/app/(view)/(main)/layout.tsx index 83e0a28..731ec1f 100644 --- a/apps/web/app/(view)/(main)/layout.tsx +++ b/apps/web/app/(view)/(main)/layout.tsx @@ -5,7 +5,7 @@ import { WebViewBridge } from '@/components/WebViewBridge'; export default function MainLayout({ children }: { children: React.ReactNode }) { return ( -
+
{/* WebView와 네이티브 앱 간 통신 */} diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index 0bb3704..7035549 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -1,11 +1,22 @@ 'use client'; import HomePage from './(view)/(main)/home/page'; +import { BottomNavBar } from '@/components/BottomNavBar'; +import { WebViewBridge } from '@/components/WebViewBridge'; export default function Web() { return ( - <> - - +
+ +
+ +
+ +
); } diff --git a/packages/main-feature/src/pages/general/index/components/Layout.tsx b/packages/main-feature/src/pages/general/index/components/Layout.tsx index a06c601..fdc2eb6 100644 --- a/packages/main-feature/src/pages/general/index/components/Layout.tsx +++ b/packages/main-feature/src/pages/general/index/components/Layout.tsx @@ -2,13 +2,13 @@ import { AppBar, Layout as SharedLayout } from "@repo/shared"; const Layout = ({ children }: { children: React.ReactNode }) => { return ( -
+ <> } rightContent={} bgColor="bg-[#FFF5F5]" /> {/* 하단 네비게이션 바는 (main) 레이아웃에서 처리 */} {children} -
+ ) }