This commit is contained in:
quantulr
2023-11-01 17:27:06 +08:00
parent 7e465da9d2
commit 1a22404f19
87 changed files with 1604 additions and 196 deletions

View File

@ -0,0 +1,20 @@
import ArticleLayout from "@/app/components/ArticleLayout";
import React, { ReactNode } from "react";
import Breadcrumb from "@/app/components/Breadcrumb";
const breadcrumb = [
{ href: "/", title: "首页" },
{ href: "/contact-us", title: "联系我们" },
];
const Layout = ({ children }: { children: ReactNode }) => {
return (
<ArticleLayout leftNavTitle={"联系我们"}>
<div className={"flex flex-col h-full"}>
<Breadcrumb navigations={breadcrumb} />
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
</div>
</ArticleLayout>
);
};
export default Layout;

View File

@ -0,0 +1,24 @@
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786] mb-8"}>
</h2>
<p className={"text-base indent-8 my-1"}>
绿
</p>
<p className={"text-base indent-8 my-1"}>
8:3018:00
</p>
<p className={"text-base indent-8 my-1"}>
18156053255 18156054143
</p>
<p className={"text-base indent-8 my-1"}>
D1 7
</p>
<p className={"text-base indent-8 my-1"}>230022</p>
</>
);
};
export default Page;