- 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.
31 lines
976 B
TypeScript
31 lines
976 B
TypeScript
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 (
|
||
<>
|
||
<div className="container">
|
||
<div className="sale-contents">
|
||
<div className="border-frame">
|
||
<div className="pw-guide">
|
||
<div className="pw-guide-txt">この適合表は参考資料として使用してください.</div>
|
||
<div className="pw-guide-txt">詳細やお問い合わせは1:1お問い合わせをご利用ください.</div>
|
||
<div className="pw-guide-txt">屋根材の選択or屋根材名を直接入力してください.</div>
|
||
</div>
|
||
</div>
|
||
{children}
|
||
</div>
|
||
</div>
|
||
</>
|
||
)
|
||
}
|