docs/pages/index.tsx

74 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-27 13:49:46 +00:00
<div style={{ paddingBottom: '0.7em' }}>
2024-07-23 04:41:21 +00:00
<Frame>
<img src={logoUrl.src} alt="Logo of sudo-flix" />
</Frame>
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-04-27 13:49:46 +00:00
A cutesy app for watching your favorite movies and 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>
2024-04-26 19:49:37 +00:00
<Frame plain={true}>
<CardGrid>
<Card icon="material-symbols:hangout-video-off" title="No Ads">
sudo-flix will never show ads, enjoy watching without interruptions.
</Card>
<Card icon="ic:baseline-ondemand-video" title="Custom Player">
Enjoy a fully custom video player including streaming integration,
subtitle customization and easy TV season navigation.
</Card>
<Card icon="mdi:content-save" title="Saves your progress">
2024-04-26 19:53:19 +00:00
Will remember your progress in movies and TV shows, so you can
easily continue where you left off.
2024-04-26 19:49:37 +00:00
</Card>
<Card icon="mdi:bookmark" title="Bookmarking">
Allows you to bookmark your favorite movies and TV shows, so you can
easily find them again.
</Card>
<Card icon="mdi:cloud-refresh" title="Syncing across devices">
2024-04-26 19:53:19 +00:00
Enjoy uninterrupted streaming as your progress, proxies, and
bookmarks sync effortlessly across all your devices.
2024-04-26 19:49:37 +00:00
</Card>
<Card icon="mdi:power-plug-outline" title="Modular by design">
Mix and match different parts of the sudo-flix service, host your
backend or use ours, it&apos;ll work either way.
</Card>
<Card icon="mdi:flag" title="Multiple Languages">
Supports over 25 languages, including English, German, French,
Spanish, Italian, Czech, Hindi, Arabic, Hebrew and more.
</Card>
<Card icon="mdi:brush-variant" title="Customizable">
2024-04-26 19:53:19 +00:00
Supports various themes, subtitle colors and subtitle sizes so you
can make it look however you want.
2024-04-26 19:49:37 +00:00
</Card>
<Card icon="mdi:cellphone" title="Progressive Web App Support">
2024-04-26 19:53:19 +00:00
Supports PWA, so you can install it on your phone and use it just
like a native app.
2024-04-26 19:49:37 +00:00
</Card>
</CardGrid>
</Frame>
2024-03-30 19:34:50 +00:00
</GuiderLayout>
);
}