tiefen_space_web/app/help/page.jsx

20 lines
618 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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">
<img
src={process.env.NEXT_PUBLIC_CDN_URL + "/public/images/logo.png"}
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>
);
}