mirror of
https://github.com/usememos/memos.git
synced 2025-02-23 22:57:54 +01:00
39 lines
1.7 KiB
TypeScript
39 lines
1.7 KiB
TypeScript
import { Link } from "@mui/joy";
|
|
import { DotIcon } from "lucide-react";
|
|
import MobileHeader from "@/components/MobileHeader";
|
|
|
|
const About = () => {
|
|
return (
|
|
<section className="@container w-full max-w-5xl min-h-full flex flex-col justify-start items-center sm:pt-3 md:pt-6 pb-8">
|
|
<MobileHeader />
|
|
<div className="w-full px-4 sm:px-6">
|
|
<div className="w-full shadow flex flex-col justify-start items-start px-4 py-3 rounded-xl bg-white dark:bg-zinc-800 text-black dark:text-gray-300">
|
|
<a href="https://www.usememos.com" target="_blank">
|
|
<img className="w-auto h-12" src="https://www.usememos.com/full-logo-landscape.png" alt="memos" />
|
|
</a>
|
|
<p className="text-base">A privacy-first, lightweight note-taking service. Easily capture and share your great thoughts.</p>
|
|
<div className="mt-1 flex flex-row items-center flex-wrap">
|
|
<Link underline="always" href="https://www.github.com/usememos/memos" target="_blank">
|
|
GitHub Repo
|
|
</Link>
|
|
<DotIcon className="w-4 h-auto opacity-60" />
|
|
<Link underline="always" href="https://www.usememos.com/" target="_blank">
|
|
Official Website
|
|
</Link>
|
|
<DotIcon className="w-4 h-auto opacity-60" />
|
|
<Link underline="always" href="https://www.usememos.com/blog" target="_blank">
|
|
Blogs
|
|
</Link>
|
|
<DotIcon className="w-4 h-auto opacity-60" />
|
|
<Link underline="always" href="https://www.usememos.com/docs" target="_blank">
|
|
Documents
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default About;
|