diff --git a/src/app/(root)/@footer/page.tsx b/src/app/(home)/@footer/page.tsx similarity index 100% rename from src/app/(root)/@footer/page.tsx rename to src/app/(home)/@footer/page.tsx diff --git a/src/app/(root)/@header/_client/help.tsx b/src/app/(home)/@header/_client/help.tsx similarity index 100% rename from src/app/(root)/@header/_client/help.tsx rename to src/app/(home)/@header/_client/help.tsx diff --git a/src/app/(root)/@header/_client/navs.tsx b/src/app/(home)/@header/_client/navs.tsx similarity index 100% rename from src/app/(root)/@header/_client/navs.tsx rename to src/app/(home)/@header/_client/navs.tsx diff --git a/src/app/(root)/@header/_client/product.tsx b/src/app/(home)/@header/_client/product.tsx similarity index 98% rename from src/app/(root)/@header/_client/product.tsx rename to src/app/(home)/@header/_client/product.tsx index af399da..92023be 100644 --- a/src/app/(root)/@header/_client/product.tsx +++ b/src/app/(home)/@header/_client/product.tsx @@ -6,7 +6,7 @@ import Link from 'next/link' import {merge} from '@/lib/utils' import prod from '@/assets/header/product/prod.svg' import custom from '@/assets/header/product/custom.svg' -import {HeaderContext} from '@/app/(root)/@header/_client/provider' +import {HeaderContext} from '@/app/(home)/@header/_client/provider' type TabType = 'domestic' | 'oversea' diff --git a/src/app/(root)/@header/_client/provider.tsx b/src/app/(home)/@header/_client/provider.tsx similarity index 100% rename from src/app/(root)/@header/_client/provider.tsx rename to src/app/(home)/@header/_client/provider.tsx diff --git a/src/app/(root)/@header/_client/solution.tsx b/src/app/(home)/@header/_client/solution.tsx similarity index 100% rename from src/app/(root)/@header/_client/solution.tsx rename to src/app/(home)/@header/_client/solution.tsx diff --git a/src/app/(root)/@header/page.tsx b/src/app/(home)/@header/page.tsx similarity index 75% rename from src/app/(root)/@header/page.tsx rename to src/app/(home)/@header/page.tsx index 6b7defe..63b6599 100644 --- a/src/app/(root)/@header/page.tsx +++ b/src/app/(home)/@header/page.tsx @@ -1,4 +1,4 @@ -import Provider from '@/app/(root)/@header/_client/provider' +import Provider from '@/app/(home)/@header/_client/provider' export type HeaderProps = {} diff --git a/src/app/(root)/collect/page.tsx b/src/app/(home)/collect/page.tsx similarity index 100% rename from src/app/(root)/collect/page.tsx rename to src/app/(home)/collect/page.tsx diff --git a/src/app/(root)/layout.tsx b/src/app/(home)/layout.tsx similarity index 60% rename from src/app/(root)/layout.tsx rename to src/app/(home)/layout.tsx index e3be616..1142fb5 100644 --- a/src/app/(root)/layout.tsx +++ b/src/app/(home)/layout.tsx @@ -1,12 +1,12 @@ -import Header from '@/app/(root)/@header/page' -import Footer from '@/app/(root)/@footer/page' +import Header from '@/app/(home)/@header/page' +import Footer from '@/app/(home)/@footer/page' import {ReactNode} from 'react' -export type RootLayoutProps = { +export type HomeLayoutProps = { children: ReactNode } -export default function RootLayout(props: RootLayoutProps) { +export default function HomeLayout(props: HomeLayoutProps) { return (