Spaces:
Paused
Paused
File size: 3,077 Bytes
35ee763 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
import Link from '@docusaurus/Link'
import clsx from 'clsx'
import React from 'react'
import styles from './styles.module.css'
const FeatureList = [
{
title: 'On-Premise Variant',
description: (
<>
<p>
<img src="https://res.cloudinary.com/mgilangjanuar/image/upload/v1648438905/teledrive/Screen_Shot_2022-03-28_at_10.41.06_m7ugy3.png" alt="screenshot" />
</p>
<p>
The open source project to give you what you deserve. Using the Telegram API as your unlimited storage. So, you can upload as many as you want without any limit π
</p>
<p>
Demo applications: <a href="https://teledrive.vercel.app" target="_blank">teledrive.vercel.app</a>, or <a href="https://teledriveapp.herokuapp.com">teledriveapp.herokuapp.com</a> <em>(*expect high traffic)</em>
</p>
</>
),
},
];
function Feature({title, description}) {
return (
<>
<div className={clsx('col col--2')}></div>
<div className={clsx('col col--8')}>
<div className="text--center padding-horiz--md">
<h3>{title}</h3>
{description}
</div>
</div>
</>
);
}
export default function HomepageFeatures() {
return (
<>
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
<section className={styles.features}>
<div className="container">
<div className="row">
<div className={clsx('col col--2')}></div>
<div className={clsx('col col--8')}>
<div className="text--center padding-horiz--md">
<h3>Easy Installation</h3>
<pre style={{ textAlign: 'left' }}>
$ git clone https://github.com/mgilangjanuar/teledrive.git<br />
$ cd teledrive/docker<br />
$ docker-compose up -d
</pre>
<p>
<Link className="button button--secondary" to="/docs/intro">
Learn more
</Link>
</p>
</div>
</div>
</div>
</div>
</section>
<section className={styles.features}>
<div className="container">
<div className="row">
<div className={clsx('col col--2')}></div>
<div className={clsx('col col--8')}>
<div className="text--center padding-horiz--md">
<h3>Need Help?</h3>
<p>
We provide a Discord server for you to get help from the community.
</p>
<p>
<a target="_blank" className="button button--secondary" href="https://discord.gg/8v26KavKa4">Join now!</a>
</p>
</div>
</div>
</div>
</div>
</section>
<br /><br />
</>
);
}
|