docs/pages/index.tsx

73 lines
2.8 KiB
TypeScript
Raw Normal View History

2024-03-30 19:34:50 +00:00
import {
Button,
Card,
CardGrid,
GuiderLayout,
Hero,
2024-04-26 17:38:28 +00:00
Frame,
2024-03-30 19:34:50 +00:00
} from '@neato/guider/client';
2024-04-26 17:38:28 +00:00
import logoUrl from '../public/transparent-logo.png';
2024-03-30 19:34:50 +00:00
export default function LandingPage() {
return (
2024-03-31 15:17:44 +00:00
<GuiderLayout meta={{ layout: 'page' }}>
2024-03-30 19:34:50 +00:00
<Hero>
2024-04-26 17:45:07 +00:00
<div style={{ paddingBottom: '2em' }}>
<img src={logoUrl.src} alt="Logo of sudo-flix" />
2024-04-26 17:38:28 +00:00
</div>
2024-04-25 17:59:10 +00:00
<Hero.Title>sudo-flix</Hero.Title>
2024-03-30 19:34:50 +00:00
<Hero.Subtitle>
2024-03-31 15:17:44 +00:00
A simple and no-BS app for watching movies and TV shows. Totally free
and open source, forever.
2024-03-30 19:34:50 +00:00
</Hero.Subtitle>
<Hero.Actions>
<Button to="/self-hosting/hosting-intro">Get Started</Button>
2024-04-25 17:59:10 +00:00
<Button to="https://github.com/sussy-code/smov" type="secondary">
2024-04-26 14:56:26 +00:00
Open on GitHub
2024-03-30 19:34:50 +00:00
</Button>
</Hero.Actions>
</Hero>
<CardGrid>
<Card icon="mdi:server-network" title="Easy to host">
Can be easily hosted on any static website host.
</Card>
<Card icon="material-symbols:hangout-video-off" title="No Ads">
2024-04-25 17:59:10 +00:00
sudo-flix will never show ads, enjoy watching without interruptions.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="ic:baseline-ondemand-video" title="Custom Player">
2024-03-31 15:17:44 +00:00
Enjoy a fully custom video player including streaming integration,
subtitle customization and easy TV season navigation.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:content-save" title="Saves your progress">
2024-03-31 15:17:44 +00:00
Will remember your progress in movies and TV shows, so you can easily
continue where you left off.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:bookmark" title="Bookmarking">
2024-03-31 15:17:44 +00:00
Allows you to bookmark your favorite movies and TV shows, so you can
easily find them again.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:cloud-refresh" title="Syncing across devices">
2024-03-31 15:17:44 +00:00
Enjoy uninterrupted streaming as your progress, proxies, and bookmarks
sync effortlessly across all your devices.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:power-plug-outline" title="Modular by design">
2024-04-25 17:59:10 +00:00
Mix and match different parts of the sudo-flix service, host your
2024-03-31 15:17:44 +00:00
backend or use ours, it&apos;ll work either way.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:flag" title="Multiple Languages">
2024-03-31 15:17:44 +00:00
Supports over 25 languages, including English, German, French,
Spanish, Italian, Czech, Hindi, Arabic, Hebrew and more.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:brush-variant" title="Customizable">
2024-03-31 15:17:44 +00:00
Supports various themes, subtitle colors and subtitle sizes so you can
make it look however you want.
2024-03-30 19:34:50 +00:00
</Card>
<Card icon="mdi:cellphone" title="Progressive Web App Support">
2024-03-31 15:17:44 +00:00
Supports PWA, so you can install it on your phone and use it just like
a native app.
2024-03-30 19:34:50 +00:00
</Card>
</CardGrid>
</GuiderLayout>
);
}