Path: blob/master/src/packages/next/components/landing/backups.tsx
1450 views
/*1* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Paragraph } from "components/misc";6import A from "components/misc/A";7import Info from "./info";89import image from "public/features/cocalc-backup-1.png";1011export default function Backups() {12return (13<Info14anchor="a-backups"15title="Backups"16icon="life-saver"17image={image}18alt="Directory listing of filesystem backups of a CoCalc project"19wide20>21<Paragraph>22Every couple of minutes,{" "}23<strong>24all files in your project are saved in consistent readonly snapshots{" "}25<A href="https://en.wikipedia.org/wiki/ZFS">using ZFS</A>26</strong>27.28</Paragraph>29<Paragraph>30This means you can recover older versions of your files in case they are31corrupted or accidentally deleted.{" "}32</Paragraph>33<Paragraph>34These backups are complementary to{" "}35<A href="#a-timetravel">TimeTravel</A> and provide browsable backups of36images and data files in addition to the documents you are actively37editing.38</Paragraph>39</Info>40);41}424344