REFACTOR: Relocate components to appropriate folders + minor style adjustments

This commit is contained in:
Chris-1010
2025-02-22 12:14:00 +00:00
parent 9cc5b40b25
commit af24bfa7d3
9 changed files with 127 additions and 107 deletions

View File

@@ -44,10 +44,9 @@ const HomePage: React.FC<HomePageProps> = ({ variant = "default" }) => {
wrap={false}
onClick={handleStreamClick}
extraClasses="bg-[var(--liveNow)]"
>
{/* <Button extraClasses="absolute right-10" onClick={() => navigate("/")}>
Show More . . .
Show More
</Button> */}
</ListRow>
@@ -73,7 +72,7 @@ const HomePage: React.FC<HomePageProps> = ({ variant = "default" }) => {
extraClasses="absolute right-10"
onClick={() => navigate("/categories")}
>
Show More . . .
Show More
</Button>
</ListRow>
</DynamicPageContent>

View File

@@ -1,11 +1,11 @@
import React, { useState, useEffect } from "react";
import { ToggleButton } from "../components/Input/Button";
import ChatPanel from "../components/Video/ChatPanel";
import ChatPanel from "../components/Stream/ChatPanel";
import { useNavigate, useParams } from "react-router-dom";
import { useAuthModal } from "../hooks/useAuthModal";
import { useAuth } from "../context/AuthContext";
import { useFollow } from "../hooks/useFollow";
import VideoPlayer from "../components/Video/VideoPlayer";
import VideoPlayer from "../components/Stream/VideoPlayer";
import { SocketProvider } from "../context/SocketContext";
import AuthModal from "../components/Auth/AuthModal";
import CheckoutForm, { Return } from "../components/Checkout/CheckoutForm";