tiefen_space_web/app/help/page.jsx

30 lines
1.8 KiB
JavaScript
Raw Permalink 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";
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">
<svg className="mt-16" viewBox="0 0 1024 1024" width="100" height="100">
<path
d="M917.76 280.746667c-16.64-90.88-87.893333-162.133333-179.2-179.2-73.813333-13.653333-147.626667-20.48-221.866667-20.906667h-10.24c-73.813333 0.426667-147.626667 7.253333-221.866666 20.906667-90.88 16.64-162.133333 87.893333-179.2 179.2-13.653333 74.24-20.48 148.906667-20.906667 223.146666v7.253334c0.426667 74.24 7.253333 148.906667 20.906667 223.146666 16.64 90.88 87.893333 162.133333 179.2 179.2 75.52 13.653333 151.04 20.906667 226.986666 20.906667 75.52 0 151.04-6.826667 226.986667-20.906667 90.88-16.64 162.133333-87.893333 179.2-179.2 14.08-75.52 20.906667-151.04 20.906667-226.986666 0-75.093333-6.826667-150.613333-20.906667-226.56z"
fill="#FF251A"
></path>
<path
d="M645.12 425.813333l-43.52 39.68s0-158.72-145.066667-211.626666c0 0-14.506667 145.493333-87.04 198.4-72.533333 52.906667-217.6 211.626667 72.533334 330.666666 0 0-145.066667-145.493333 43.52-251.306666 0 0-14.506667 52.906667 58.026666 105.813333s0 145.493333 0 145.493333 348.16-79.36 101.546667-357.12z m0 0"
fill="#FFFFFF"
></path>
</svg>
<p className="text-white font-medium text-base text-center mt-4">
若对于产品存在任何疑问或需要技术支持请发送邮件到
</p>
<p className="text-primary text-2xl mt-4">ybc0902@qq.com</p>
<p className="text-secondary text-base mt-4">
工作时间周一到周五8:00~21:00
</p>
</div>
</section>
);
}