Path: blob/master/src/packages/next/components/landing/snapshots.tsx
1450 views
/*1* This file is part of CoCalc: Copyright © 2021 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { ReactNode } from "react";67import A from "components/misc/A";8import Info from "./info";9import image from "public/features/cocalc-snapshots.png";10import { Paragraph } from "components/misc";1112interface Props {13children?: ReactNode;14}1516export default function Snapshots({ children }: Props) {17return (18<Info19title="Snapshot backups"20image={image}21icon="life-saver"22anchor="a-snapshot-backups"23alt="Browsing filesystem snapshots in a CoCalc project"24wide25>26<Paragraph>27<strong>Snapshots</strong> are consistent read-only views of all your28files in a{" "}29<A href="https://doc.cocalc.com/project.html">CoCalc project</A>. You30can restore your files by copying back any that you accidentally deleted31or corrupted.32</Paragraph>33{children}34</Info>35);36}373839