diff --git a/src/app/(pages)/layout.tsx b/src/app/(pages)/layout.tsx index 9af0848..49539ae 100644 --- a/src/app/(pages)/layout.tsx +++ b/src/app/(pages)/layout.tsx @@ -11,6 +11,6 @@ const Layout: React.FC = ({ children }) => { {children} ); -} +}; -export default Layout; \ No newline at end of file +export default Layout; diff --git a/src/app/(pages)/page.tsx b/src/app/(pages)/page.tsx index a1f7ebc..0c490ee 100644 --- a/src/app/(pages)/page.tsx +++ b/src/app/(pages)/page.tsx @@ -2,9 +2,7 @@ import Image from "next/image"; import { NextPage } from "next"; const Home: NextPage = () => { - return ( -

hello

- ); -} + return

hello

; +}; -export default Home; \ No newline at end of file +export default Home; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b2a874e..99028a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -27,7 +27,9 @@ export default function RootLayout({ lang="ja" className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`} > - {children} + + {children} + ); } diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 65a9961..a2b0876 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -4,7 +4,7 @@ const Header: React.FC = () => { tuna2134の休憩

tuna2134

- ) -} + ); +}; -export default Header; \ No newline at end of file +export default Header;