tiefen_space_web/app/help/page.jsx

16 lines
541 B
React
Raw Normal View History

2024-03-25 14:03:28 +08:00
import React from "react";
export default function Help() {
return (
<section className="flex-1 container">
<div className="flex flex-col items-center justify-center p-4">
2024-06-14 23:34:23 +08:00
<img src="/cdn/images/logo.png" alt="" className="w-64 mt-12" />
2024-03-25 14:03:28 +08:00
<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>
);
}