pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update discover loading animation

+4 -4
+2 -2
src/pages/Discover.tsx
··· 2 2 import { Helmet } from "react-helmet-async"; 3 3 import { useTranslation } from "react-i18next"; 4 4 5 - import { Spinner } from "@/components/layout/Spinner"; 5 + import { Loading } from "@/components/layout/Loading"; 6 6 import DiscoverContent from "@/utils/discoverContent"; 7 7 8 8 import { SubPageLayout } from "./layouts/SubPageLayout"; ··· 64 64 {/* Conditional rendering: show loading screen or the content */} 65 65 {loading ? ( 66 66 <div className="flex flex-col justify-center items-center h-64 space-y-4"> 67 - <Spinner /> 67 + <Loading /> 68 68 <p className="text-lg font-medium text-gray-400 animate-pulse mt-4"> 69 69 Fetching the latest movies & TV shows... 70 70 </p>
+2 -2
src/pages/HomePage.tsx
··· 2 2 import { Helmet } from "react-helmet-async"; 3 3 import { useTranslation } from "react-i18next"; 4 4 5 - import { Spinner } from "@/components/layout/Spinner"; 5 + import { Loading } from "@/components/layout/Loading"; 6 6 import { WideContainer } from "@/components/layout/WideContainer"; 7 7 import { useDebounce } from "@/hooks/useDebounce"; 8 8 import { useRandomTranslation } from "@/hooks/useRandomTranslation"; ··· 96 96 {/* Conditional rendering: show loading screen or the content */} 97 97 {loading ? ( 98 98 <div className="flex flex-col justify-center items-center h-64 space-y-4"> 99 - <Spinner /> 99 + <Loading /> 100 100 <p className="text-lg font-medium text-gray-400 animate-pulse mt-4"> 101 101 Fetching the latest movies & TV shows... 102 102 </p>