diff --git a/src/app/inquiry/layout.tsx b/src/app/inquiry/layout.tsx
index 292ae27..2bfcebb 100644
--- a/src/app/inquiry/layout.tsx
+++ b/src/app/inquiry/layout.tsx
@@ -1,5 +1,11 @@
+import { Metadata } from 'next'
import type { ReactNode } from 'react'
+export const metadata: Metadata = {
+ title: 'HANASYS現地調査:お問い合わせ',
+ description: 'HANASYS現地調査:お問い合わせ',
+}
+
export default function layout({ children }: { children: ReactNode }) {
return
{children}
}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 508c340..a7b5426 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -13,8 +13,8 @@ import { sessionOptions } from '@/libs/session'
import '@/styles/style.scss'
export const metadata: Metadata = {
- title: 'Create Next App',
- description: 'Generated by create next app',
+ title: 'HANASYS現地調査',
+ description: 'HANASYS現地調査',
}
interface RootLayoutProps {
diff --git a/src/app/suitable/layout.tsx b/src/app/suitable/layout.tsx
index e5e7c3f..6141455 100644
--- a/src/app/suitable/layout.tsx
+++ b/src/app/suitable/layout.tsx
@@ -1,9 +1,15 @@
+import { Metadata } from 'next'
import type { ReactNode } from 'react'
interface SuitableLayoutProps {
children: ReactNode
}
+export const metadata: Metadata = {
+ title: 'HANASYS現地調査:屋根材積合成',
+ description: 'HANASYS現地調査:屋根材積合成',
+}
+
export default function layout({ children }: SuitableLayoutProps) {
return (
<>
diff --git a/src/app/survey-sale/layout.tsx b/src/app/survey-sale/layout.tsx
index 6e7278a..90c813e 100644
--- a/src/app/survey-sale/layout.tsx
+++ b/src/app/survey-sale/layout.tsx
@@ -1,9 +1,15 @@
+import { Metadata } from 'next'
import type { ReactNode } from 'react'
interface SurveySaleLayoutProps {
children: ReactNode
}
+export const metadata: Metadata = {
+ title: 'HANASYS現地調査:調査物件',
+ description: 'HANASYS現地調査:調査物件',
+}
+
export default function layout({ children }: SurveySaleLayoutProps) {
return (
<>