yoosangwook 99b37e3ac3 chore: update metadata for layout components
- 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.
2025-06-12 16:07:46 +09:00

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>
}