diff --git a/src/components/cards/repo.jsx b/src/components/cards/repo.jsx index bc3d0b8..aca0863 100644 --- a/src/components/cards/repo.jsx +++ b/src/components/cards/repo.jsx @@ -17,7 +17,7 @@ const RepoCard = ({ url, isFirst }) => { return } - return
+ return

{data.name || "Unnamed"}

diff --git a/src/pages/repos.js b/src/pages/repos.js index 216cd33..bf648d0 100644 --- a/src/pages/repos.js +++ b/src/pages/repos.js @@ -4,6 +4,8 @@ import Layout from "../components/layout" import RepoCard from "../components/cards/repo" import bgImage from "../media/phones.png" +import { TiWarning } from "react-icons/ti"; + const IndexPage = () => { const [repos, setRepos] = useState([]); @@ -17,6 +19,15 @@ const IndexPage = () => { return

+
+
+ +
+

Keep in mind that the extensions can execute arbitrary code inside the app.

+ This means you should treat them with the same level of scrutiny you treat any apps. Extensions can also read all of the Cloudstream's data. +
+
+
{repos && repos.map((it, index) => ) }