This commit is contained in:
mota
2025-11-02 15:13:03 +09:00
parent b10d41532b
commit fadd402e63
31 changed files with 1105 additions and 192 deletions

31
src/app/guide/page.tsx Normal file
View File

@@ -0,0 +1,31 @@
export const dynamic = "force-static";
export default function ServiceGuidePage() {
return (
<div className="space-y-6">
<section className="rounded-xl overflow-hidden bg-white p-6 md:p-8">
<h1 className="text-2xl font-bold mb-2"></h1>
<div className="prose max-w-none text-sm leading-6 text-neutral-800">
<h2> </h2>
<ul>
<li> / .</li>
<li> .</li>
</ul>
<h2> </h2>
<ul>
<li>/ .</li>
<li> .</li>
</ul>
<h2> & </h2>
<ul>
<li>, , , .</li>
</ul>
<h2></h2>
<p>customer@assm.example / 02-0000-0000 ( 10:00~18:00)</p>
</div>
</section>
</div>
);
}