diff --git a/src/app/planner/layout.tsx b/src/app/planner/layout.tsx index 74a6680..e6c8c72 100644 --- a/src/app/planner/layout.tsx +++ b/src/app/planner/layout.tsx @@ -3,9 +3,5 @@ export default function PlannerLayout({ }: Readonly<{ children: React.ReactNode; }>) { - return ( - - {children} - - ); + return
{children}
; } diff --git a/src/app/spreadsheet/layout.tsx b/src/app/spreadsheet/layout.tsx index 3f25056..74feb04 100644 --- a/src/app/spreadsheet/layout.tsx +++ b/src/app/spreadsheet/layout.tsx @@ -3,9 +3,5 @@ export default function SpreadsheetLayout({ }: Readonly<{ children: React.ReactNode; }>) { - return ( - - {children} - - ); + return
{children}
; } diff --git a/src/components/Header.tsx b/src/components/Header.tsx index c27a497..486030e 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,7 +1,9 @@ export default function Header() { return ( -
-

Header

+
+ Spreadsheet + Home + Planner
); }