borgwarehouse/Components/WizardSteps/WizardStep1/WizardStep1.js
2024-08-31 22:47:46 +02:00

65 lines
2.2 KiB
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.

//Lib
import React from 'react';
import classes from '../WizardStep1/WizardStep1.module.css';
import { IconDeviceDesktopAnalytics, IconTerminal2 } from '@tabler/icons-react';
function WizardStep1() {
return (
<div className={classes.container}>
<h1>
<IconTerminal2 className={classes.icon} />
Command Line Interface
</h1>
<div className={classes.description}>
We recommend using the official <b>BorgBackup</b> client which is supported by most Linux
distributions.
<br />
More information about installation can be{' '}
<a
href='https://borgbackup.readthedocs.io/en/stable/installation.html'
target='_blank'
rel='noreferrer'
>
found here
</a>
.<br />
To <b>automate your backup</b>, you can also use{' '}
<a href='https://torsion.org/borgmatic/' target='_blank' rel='noreferrer'>
Borgmatic
</a>{' '}
which is a{' '}
<a href='https://packages.debian.org/buster/borgmatic' target='_blank' rel='noreferrer'>
Debian package
</a>
. On the step 4, you will find a pattern of default config.
</div>
<div className={classes.separator}></div>
<h1>
<IconDeviceDesktopAnalytics className={classes.icon} />
Graphical User Interface
</h1>
<div className={classes.description}>
BorgWarehouse is <b>compatible with all BorgBackup graphical clients</b>, including the
well-known{' '}
<a href='https://apps.gnome.org/PikaBackup/' target='_blank' rel='noreferrer'>
Pika Backup
</a>{' '}
and{' '}
<a href='https://vorta.borgbase.com/' target='_blank' rel='noreferrer'>
Vorta
</a>
.
<br />
Vorta runs on Linux, MacOS and Windows (via Windows Linux Subsystem (WSL)). Find the right
way to install it{' '}
<a href='https://vorta.borgbase.com/install/' target='_blank' rel='noreferrer'>
just here
</a>
.
</div>
<img src='/vorta-demo.gif' alt='Vorta GIF' />
</div>
);
}
export default WizardStep1;