website/src/pages/index.js

35 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-08-27 08:45:32 +00:00
import React from "react"
2022-08-26 13:46:21 +00:00
import Layout from "../components/layout"
import Hero from "../components/hero"
2022-08-27 08:45:32 +00:00
import CompatBtn from "../components/compatbtn"
2022-12-01 09:04:26 +00:00
import SEO from "../components/seo"
2022-08-26 13:46:21 +00:00
2022-12-01 09:04:26 +00:00
import bgImage from "../media/phones.webp"
2022-08-26 13:46:21 +00:00
const IndexPage = () => {
return <Layout>
<Hero bg={bgImage}>
2022-12-01 09:04:26 +00:00
<h1 className="mb-5 text-5xl font-bold">Hello there</h1>
<p className="mb-5 text-lg">
Cloudstream is an Android app for streaming and downloading Movies, TV-Series and Anime.
<div className="divider divider-horizontal" />
On this official cloudstream/recloudstream site you can find downloads links and a list of repositories of extensions.
</p>
2022-08-26 13:46:21 +00:00
<div className="flex justify-center w-full mb-5">
2022-08-27 08:45:32 +00:00
<CompatBtn autoFocus={true} className="btn-primary" href="/install">Install</CompatBtn>
2022-08-26 13:46:21 +00:00
<div className="divider divider-horizontal" />
2022-08-27 08:45:32 +00:00
<CompatBtn className="btn-primary" href="/repos">Repositories</CompatBtn>
2022-08-26 13:46:21 +00:00
</div>
2022-10-17 17:37:54 +00:00
<CompatBtn className="btn-secondary" href="/docs">Guides, FAQ & Docs</CompatBtn>
2022-08-26 13:46:21 +00:00
</Hero>
</Layout>
}
export default IndexPage
export function Head() {
2022-12-01 09:04:26 +00:00
return <SEO />
2022-08-26 13:46:21 +00:00
}