docs/pages/index.tsx

68 lines
2.6 KiB
TypeScript
Raw Normal View History

2024-03-30 19:34:50 +00:00
import {
Button,
Card,
CardGrid,
GuiderLayout,
Hero,
} from '@neato/guider/client';
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>
<Hero.Title>movie-web</Hero.Title>
<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>
<Button to="https://github.com/movie-web/movie-web" type="secondary">
Open on GitHub
</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">
movie-web will never show ads, enjoy watching without interruptions.
</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-03-31 15:17:44 +00:00
Mix and match different parts of the movie-web service, host your
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>
);
}