Compare commits
2 Commits
f8d1cb54b6
...
44d7a52790
| Author | SHA1 | Date | |
|---|---|---|---|
| 44d7a52790 | |||
| 99b37e3ac3 |
2
prod.startscript.js
Normal file
2
prod.startscript.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
var exec = require('child_process').exec
|
||||||
|
exec('pnpm run start:prod', { windowsHide: true })
|
||||||
@ -1,5 +1,11 @@
|
|||||||
|
import { Metadata } from 'next'
|
||||||
import type { ReactNode } from 'react'
|
import type { ReactNode } from 'react'
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'HANASYS現地調査:お問い合わせ',
|
||||||
|
description: 'HANASYS現地調査:お問い合わせ',
|
||||||
|
}
|
||||||
|
|
||||||
export default function layout({ children }: { children: ReactNode }) {
|
export default function layout({ children }: { children: ReactNode }) {
|
||||||
return <div className="container">{children}</div>
|
return <div className="container">{children}</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,8 +13,8 @@ import { sessionOptions } from '@/libs/session'
|
|||||||
import '@/styles/style.scss'
|
import '@/styles/style.scss'
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Create Next App',
|
title: 'HANASYS現地調査',
|
||||||
description: 'Generated by create next app',
|
description: 'HANASYS現地調査',
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RootLayoutProps {
|
interface RootLayoutProps {
|
||||||
|
|||||||
@ -1,9 +1,15 @@
|
|||||||
|
import { Metadata } from 'next'
|
||||||
import type { ReactNode } from 'react'
|
import type { ReactNode } from 'react'
|
||||||
|
|
||||||
interface SuitableLayoutProps {
|
interface SuitableLayoutProps {
|
||||||
children: ReactNode
|
children: ReactNode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'HANASYS現地調査:屋根材積合成',
|
||||||
|
description: 'HANASYS現地調査:屋根材積合成',
|
||||||
|
}
|
||||||
|
|
||||||
export default function layout({ children }: SuitableLayoutProps) {
|
export default function layout({ children }: SuitableLayoutProps) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@ -1,9 +1,15 @@
|
|||||||
|
import { Metadata } from 'next'
|
||||||
import type { ReactNode } from 'react'
|
import type { ReactNode } from 'react'
|
||||||
|
|
||||||
interface SurveySaleLayoutProps {
|
interface SurveySaleLayoutProps {
|
||||||
children: ReactNode
|
children: ReactNode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'HANASYS現地調査:調査物件',
|
||||||
|
description: 'HANASYS現地調査:調査物件',
|
||||||
|
}
|
||||||
|
|
||||||
export default function layout({ children }: SurveySaleLayoutProps) {
|
export default function layout({ children }: SurveySaleLayoutProps) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user