- Changed titles and descriptions in layout.tsx files for the main app, inquiry, suitable, and survey-sale sections to reflect the new project name "HANASYS現地調査" and its specific contexts.
12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
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 <div className="container">{children}</div>
|
|
}
|