landing tweaks

This commit is contained in:
Jamie Pine 2022-04-25 13:00:05 -07:00
parent 28e56f21f4
commit 0d07f539a7
7 changed files with 55 additions and 78 deletions

View file

@ -70,38 +70,7 @@ The first implementation of a VDFS can be found in this UC Berkeley [paper](http
Many of us have multiple cloud accounts, drives that arent backed up and data at risk of loss. We depend on cloud services like Google Photos and iCloud, but are locked in with limited capacity and almost zero interoperability between services and operating systems. Photo albums shouldnt be suck in a device ecosystem, or harvested for advertising data. They should be OS agnostic, permanent and personally owned. Data we create is our legacy, that will long outlive us—open source technology is the only way to ensure we retain absolute control over the data that defines our lives, at unlimited scale.
# Features
_Note: Links are for highlight purposes only until feature specific documentation is complete._
**Complete:** _(in testing)_
- **[File discovery](#features)** - Scan devices, drives and cloud accounts to build a directory of all files with metadata.
- **[Preview generation](#features)** - Auto generate lower resolution stand-ins for image and video.
- **[Statistics](#features)** - Total capacity, index size, preview media size, free space etc.
**In progress:**
- **[File Explorer](#features)** - Browse online/offline storage locations, view files with metadata, perform basic CRUD.
- **[Realtime synchronization](#features)** - Data index synchronized in realtime between devices, prioritizing peer-to-peer LAN connections (WiFi sync).
**To be developed (MVP):**
- **[Photos](#features)** - Photo and video albums similar to Apple/Google photos.
- **[Search](#features)** - Deep search into your filesystem with a keybind, including offline locations.
- **[Tags](#features)** - Define routines on custom tags to automate workflows, easily tag files individually, in bulk and automatically via rules.
- **[Extensions](#features)** - Build tools on top of Spacedrive, extend functionality and integrate third party services. Extension directory on [spacedrive.app/extensions](#features).
**To be developed (Post-MVP):**
- **[Cloud integration](#features)** - Index & backup to Apple Photos, Google Drive, Dropbox, OneDrive & Mega + easy API for the community to add more.
- **[Encrypted vault(s)](#features)** - Effortlessly manage & encrypt sensitive files, built on top of VeraCrypt. Encrypt individual files or create flexible-size vaults.
- **[Key manager](#features)** - View, mount, dismount and hide keys. Mounted keys automatically unlock respective areas of your filesystem.
- **[Redundancy Goal](#features)** - Ensure a specific amount of copies exist for your important data, discover at-risk files and monitor device/drive health.
- **[Timeline](#features)** - View a linear timeline of content, travel to any time and see media represented visually.
- **[Media encoder](#features)** - Encode video and audio into various formats, use Tags to automate. Built with FFMPEG.
- **[Workers](#features)** - Utilize the compute power of your devices in unison to encode and perform tasks at increased speeds.
- **[Spacedrive Cloud](#features)** - We'll host an always-on cloud device for you, with pay-as-you-go plans for storage.
- **[Self hosted](#features)** - Spacedrive can be deployed as a service, behaving as just another device powering your personal cloud.
Feature list moved to the [roadmap](docs/product/roadmap.md).
# Developer Installation Instructions

View file

@ -59,8 +59,9 @@ export default function NavBar() {
<div className="hidden m-auto space-x-4 text-white lg:block ">
<NavLink link="/roadmap">Roadmap</NavLink>
<NavLink link="/faq">FAQ</NavLink>
<NavLink link="/change-log">Changelog</NavLink>
<NavLink link="/privacy">Privacy</NavLink>
<NavLink link="/team">Team</NavLink>
{/* <NavLink link="/change-log">Changelog</NavLink>
<NavLink link="/privacy">Privacy</NavLink> */}
<NavLink link="https://opencollective.com/spacedrive">Sponsor us</NavLink>
</div>
<Dropdown

View file

@ -80,9 +80,9 @@ function Page() {
</a>
</div>
<p className="px-6 mt-3 text-xs text-center text-gray-500">
Coming soon on macOS (Intel & Apple Silicon), Windows and Linux.
Coming soon on macOS, Windows and Linux.
<br />
...and shortly after to iOS & Android.
Shortly after to iOS & Android.
</p>
<div className="h-[300px] lg:h-[600px] mt-16 w-screen max-w-[100vw] relative overflow-hidden relative">

View file

@ -0,0 +1,20 @@
import Markdown from '../components/Markdown';
import React from 'react';
import { ReactComponent as Content } from '../../../../docs/product/credits.md';
import { Helmet } from 'react-helmet';
function Page() {
return (
<Markdown>
<Helmet>
<title>Our Team - Spacedrive</title>
<meta name="description" content="Who's behind Spacedrive?" />
</Helmet>
<div className="team-page">
<Content />
</div>
</Markdown>
);
}
export default Page;

View file

@ -1,19 +1,12 @@
## Spacedrive
hello@spacedrive.app
**Made with ♥️ in Canada**
_&copy; Copyright 2022-Present Jamie Pine_
**Developers:**
### Business contact
hello@jamiepine.com
Jamie Pine, Brendonovich, Oscar Beaumont, Haden Fletcher
**Founding Users:**
### Developers
Jamie Pine, Brendonovich, Oscar Beaumont
People, Who, Buy, Founder Pack
**Sponsors:**
Jamie Pine
### Contributors
Haden Fletcher

View file

@ -4,14 +4,14 @@
Spacedrive is a decentralized cross platform app that allows you to manage files across all devices, drives and clouds at once.
## How does it work?
Using a "Virtual Distributed Filesystem" (VDFS), in other words; a decentralized database that emulates a filesystem. It indexes hardware filesystems to create a master database that is synchronized in realtime between your devices running Spacedrive.
## Can I download it yet?
Only if you compile it yourself, but it is not stable yet. Follow [@spacedriveapp](https://twitter.com/spacedriveapp) for updates!
## How does it work?
Using a "Virtual Distributed Filesystem" (VDFS), in other words; a decentralized database that emulates a filesystem. It indexes hardware filesystems to create a master database that is synchronized in realtime between your devices running Spacedrive.
## Who is this for?
This software is aimed at independent creatives such as filmmakers, streamers, musicians and designers. But, it can provide value to those that care about privacy, ownership and design.

View file

@ -1,33 +1,27 @@
# Roadmap
_Note: Links are for highlight purposes only until feature specific documentation is complete._
**Complete:** _(in testing)_
- **[File discovery](#features)** - Scan devices, drives and cloud accounts to build a directory of all files with metadata.
- **[Preview generation](#features)** - Auto generate lower resolution stand-ins for image and video.
- **[Statistics](#features)** - Total capacity, index size, preview media size, free space etc.
**Complete (Still Testing):**
- **File discovery** - Scan devices, drives and cloud accounts to build a directory of all files with metadata.
- **Preview generation** - Auto generate lower resolution stand-ins for image and video.
**In progress:**
- **[File Explorer](#features)** - Browse online/offline storage locations, view files with metadata, perform basic CRUD.
- **[Realtime synchronization](#features)** - Data index synchronized in realtime between devices, prioritizing peer-to-peer LAN connections (WiFi sync).
- **Statistics** - Total capacity, index size, preview media size, free space etc.
- **File Explorer** - Browse online/offline storage locations, view files with metadata, perform basic CRUD.
- **Realtime synchronization** - Data index synchronized in realtime between devices, prioritizing peer-to-peer LAN connections (WiFi sync).
- **Self hosted** - Spacedrive can be deployed as a service, behaving as just another device powering your personal cloud.
**To be developed (MVP):**
- **[Photos](#features)** - Photo and video albums similar to Apple/Google photos.
- **[Search](#features)** - Deep search into your filesystem with a keybind, including offline locations.
- **[Tags](#features)** - Define routines on custom tags to automate workflows, easily tag files individually, in bulk and automatically via rules.
- **[Extensions](#features)** - Build tools on top of Spacedrive, extend functionality and integrate third party services. Extension directory on [spacedrive.app/extensions](#features).
- **Photos** - Photo and video albums similar to Apple/Google photos.
- **Search** - Deep search into your filesystem with a keybind, including offline locations.
- **Tags** - Define routines on custom tags to automate workflows, easily tag files individually, in bulk and automatically via rules.
- **Extensions** - Build tools on top of Spacedrive, extend functionality and integrate third party services. Extension directory on [spacedrive.app/extensions.
**To be developed (Post-MVP):**
- **[Cloud integration](#features)** - Index & backup to Apple Photos, Google Drive, Dropbox, OneDrive & Mega + easy API for the community to add more.
- **[Encrypted vault(s)](#features)** - Effortlessly manage & encrypt sensitive files, built on top of VeraCrypt. Encrypt individual files or create flexible-size vaults.
- **[Key manager](#features)** - View, mount, dismount and hide keys. Mounted keys automatically unlock respective areas of your filesystem.
- **[Redundancy Goal](#features)** - Ensure a specific amount of copies exist for your important data, discover at-risk files and monitor device/drive health.
- **[Timeline](#features)** - View a linear timeline of content, travel to any time and see media represented visually.
- **[Media encoder](#features)** - Encode video and audio into various formats, use Tags to automate. Built with FFMPEG.
- **[Workers](#features)** - Utilize the compute power of your devices in unison to encode and perform tasks at increased speeds.
- **[Spacedrive Cloud](#features)** - We'll host an always-on cloud device for you, with pay-as-you-go plans for storage.
- **[Self hosted](#features)** - Spacedrive can be deployed as a service, behaving as just another device powering your personal cloud.
- **Spacedrive Cloud** - We'll host an always-on cloud device for you, with pay-as-you-go plans for storage.
- **Cloud integration** - Index & backup to Apple Photos, Google Drive, Dropbox, OneDrive & Mega + easy API for the community to add more.
- **Encrypted vault(s)** - Effortlessly manage & encrypt sensitive files, built on top of VeraCrypt. Encrypt individual files or create flexible-size vaults.
- **Key manager** - View, mount, dismount and hide keys. Mounted keys automatically unlock respective areas of your filesystem.
- **Redundancy Goal** - Ensure a specific amount of copies exist for your important data, discover at-risk files and monitor device/drive health.
- **Timeline** - View a linear timeline of content, travel to any time and see media represented visually.
- **Media encoder** - Encode video and audio into various formats, use Tags to automate. Built with FFMPEG.
- **Workers** - Utilize the compute power of your devices in unison to encode and perform tasks at increased speeds.