添加技术支持页面

This commit is contained in:
yezian 2024-03-25 14:03:28 +08:00
parent 00f1576f41
commit 111ead82f6
1 changed files with 17 additions and 0 deletions

17
app/help/page.jsx Normal file
View File

@ -0,0 +1,17 @@
import React from "react";
import Image from "next/image";
import logo from "@/public/images/logo.png";
export default function Help() {
return (
<section className="flex-1 container">
<div className="flex flex-col items-center justify-center p-4">
<Image src={logo} priority alt="" className="w-64 mt-12" />
<p className="text-white font-medium text-base text-center mt-4">
若对于产品存在任何疑问或需要技术支持请发送邮件到
</p>
<p className="text-primary text-2xl">xinyidaole@outlook.com</p>
</div>
</section>
);
}