import { ExternalLinkIcon } from "lucide-react"; import TileSpriteStrip from "@/components/Placeholder/TileSpriteStrip"; import { TILE_SPRITES, type TileSprite } from "@/components/Placeholder/tileSprites"; import SettingGroup from "@/components/Settings/SettingGroup"; import SettingSection from "@/components/Settings/SettingSection"; import { Button } from "@/components/ui/button"; const SPRITE_SCALE = 2; const PRODUCT_LINKS = [ { label: "Website", href: "https://usememos.com/" }, { label: "GitHub", href: "https://github.com/usememos/memos" }, { label: "Docs", href: "https://usememos.com/docs" }, ]; const PRODUCT_POINTS = ["Open. Write. Done.", "Markdown-native.", "Fully yours."]; const BirdSprite = ({ sprite }: { sprite: TileSprite }) => { return ( {sprite.name} ); }; const About = () => { return ( Memos Capture first. Keep it yours. {PRODUCT_LINKS.map((link) => ( {link.label} ))} {PRODUCT_POINTS.map((item) => ( {item} ))} {TILE_SPRITES.map((sprite) => ( ))} ); }; export default About;
Capture first. Keep it yours.