);
@@ -16,7 +16,7 @@ const TopNavigation = ({ children }: TopNavigationProps) => {
const LeftItem = ({ children }: ItemProps) => {
return (
-
+
{children}
);
@@ -38,7 +38,7 @@ const CenterItem = ({ children, textAlign = 'center' }: CenterItemProps) => {
const RightItem = ({ children }: ItemProps) => {
return (
-
+
{children}
);
diff --git a/src/v1/layout/Layout.tsx b/src/v1/layout/Layout.tsx
index be16dd00..20f18aad 100644
--- a/src/v1/layout/Layout.tsx
+++ b/src/v1/layout/Layout.tsx
@@ -19,7 +19,9 @@ const Layout = ({ children }: LayoutProps) => {
const pathname = usePathname();
const isRootPath = pathname && rootPaths.includes(pathname);
- const dynamicClass = isRootPath ? 'pb-[6.4rem] pt-[2rem]' : 'py-[2rem]';
+ const dynamicClass = isRootPath
+ ? 'pb-[6.4rem] pt-[2rem]'
+ : 'pt-[5.4rem] pb-[2rem]';
return (
<>