tiefen_space_web/app/about/page.jsx

26 lines
947 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 About() {
return (
<div className="flex flex-col items-center p-6 bg-[#07050A] text-white">
<h1 className="text-3xl font-bold mb-6">关于我们</h1>
<p className="text-lg mb-4">
我们是承德望月网络科技有限公司致力于为用户提供优质的内容分享平台
</p>
<p className="text-lg mb-4">
我们的目标是通过创新的技术和优质的服务连接创作者与粉丝促进互动与交流
</p>
<p className="text-lg mb-4">
我们相信良好的社区氛围和用户体验是我们成功的关键
</p>
<p className="text-lg">
感谢您对我们的支持与信任期待与您一起创造美好的未来
</p>
<br />
<p className="text-lg">
任何意见反馈请发送邮件到chengdewangyue@outlook.com
</p>
</div>
);
}