Compare commits
3 Commits
a273af5ed9
...
e5641e0690
Author | SHA1 | Date | |
---|---|---|---|
e5641e0690 | |||
b7ee80b4a4 | |||
9f8d874822 |
@@ -33,6 +33,9 @@
|
|||||||
<!-- ABOUT THE PROJECT -->
|
<!-- ABOUT THE PROJECT -->
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
|
|||
|
||||||
|
|---|---|---|
|
||||||
|
|||
|
||||||
|
|
||||||
## About The Project
|
## About The Project
|
||||||
|
|
||||||
|
BIN
Screenshots/Screenshot 2025-06-17 at 01-15-08 Tranga.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-15-23 Tranga.png
Normal file
After Width: | Height: | Size: 522 KiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-15-36 Tranga.png
Normal file
After Width: | Height: | Size: 876 KiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-16-32 Tranga.png
Normal file
After Width: | Height: | Size: 890 KiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-16-43 Tranga.png
Normal file
After Width: | Height: | Size: 718 KiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-16-54 Tranga.png
Normal file
After Width: | Height: | Size: 456 KiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-17-16 Tranga.png
Normal file
After Width: | Height: | Size: 555 KiB |
BIN
Screenshots/Screenshot 2025-06-17 at 01-17-37 Tranga.png
Normal file
After Width: | Height: | Size: 544 KiB |
@@ -89,8 +89,8 @@ export default function App () {
|
|||||||
<Header>
|
<Header>
|
||||||
<Badge color={"danger"} invisible={apiConnected} badgeContent={"!"}>
|
<Badge color={"danger"} invisible={apiConnected} badgeContent={"!"}>
|
||||||
<Button onClick={() => setShowSettings(true)}>Settings</Button>
|
<Button onClick={() => setShowSettings(true)}>Settings</Button>
|
||||||
<Button onClick={() => setShowJobs(true)}>Jobs</Button>
|
|
||||||
</Badge>
|
</Badge>
|
||||||
|
<Button onClick={() => setShowJobs(true)}>Jobs</Button>
|
||||||
</Header>
|
</Header>
|
||||||
<Settings open={showSettings} setOpen={setShowSettings} setApiUri={setApiUri} setConnected={setApiConnected} />
|
<Settings open={showSettings} setOpen={setShowSettings} setApiUri={setApiUri} setConnected={setApiConnected} />
|
||||||
<Search open={showSearch} setOpen={setShowSearch} />
|
<Search open={showSearch} setOpen={setShowSearch} />
|
||||||
|
@@ -57,7 +57,7 @@ export default function MangaList({connected, setShowSearch}: {connected: boolea
|
|||||||
<Badge invisible sx={{margin: "8px !important"}}>
|
<Badge invisible sx={{margin: "8px !important"}}>
|
||||||
<Card onClick={() => setShowSearch(true)} sx={{height:"fit-content",width:"fit-content"}}>
|
<Card onClick={() => setShowSearch(true)} sx={{height:"fit-content",width:"fit-content"}}>
|
||||||
<CardCover sx={{margin:"var(--Card-padding)"}}>
|
<CardCover sx={{margin:"var(--Card-padding)"}}>
|
||||||
<img src={"/blahaj.png"} style={{height: CardHeight + "px", width: CardWidth + 10 + "px"}} />
|
<img src={"/blahaj.png"} style={{height: CardHeight + "px", width: CardWidth + "px"}} />
|
||||||
</CardCover>
|
</CardCover>
|
||||||
<CardCover sx={{
|
<CardCover sx={{
|
||||||
background: 'rgba(234, 119, 246, 0.14)',
|
background: 'rgba(234, 119, 246, 0.14)',
|
||||||
@@ -65,7 +65,7 @@ export default function MangaList({connected, setShowSearch}: {connected: boolea
|
|||||||
webkitBackdropFilter: 'blur(6.9px)',
|
webkitBackdropFilter: 'blur(6.9px)',
|
||||||
}}/>
|
}}/>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Box style={{height: CardHeight + "px", width: CardWidth + 10 + "px"}} >
|
<Box style={{height: CardHeight + "px", width: CardWidth + "px"}} >
|
||||||
<Typography level={"h1"}>Search</Typography>
|
<Typography level={"h1"}>Search</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
|
@@ -1,18 +1,22 @@
|
|||||||
import Sheet from "@mui/joy/Sheet";
|
import Sheet from "@mui/joy/Sheet";
|
||||||
import {Stack, Typography} from "@mui/joy";
|
import {Box, Stack, Typography} from "@mui/joy";
|
||||||
import {ReactElement} from "react";
|
import {ReactElement} from "react";
|
||||||
import './Header.css';
|
import './Header.css';
|
||||||
|
|
||||||
export default function Header({children} : {children? : ReactElement<any, any> | ReactElement<any,any>[] | undefined}) : ReactElement {
|
export default function Header({children} : {children? : ReactElement<any, any> | ReactElement<any,any>[] | undefined}) : ReactElement {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Sheet className={"header"}>
|
<Sheet className={"header"}>
|
||||||
<Stack direction={"row"}
|
<Stack direction={"row"} spacing={2} sx={{width: "100%"}}>
|
||||||
spacing={4}
|
<img src={"/blahaj.png"} style={{cursor: "grab"}}/>
|
||||||
sx={{
|
<Typography level={"h2"} sx={{
|
||||||
justifyContent: "flex-start",
|
background: "linear-gradient(110deg, var(--joy-palette-primary-solidBg), var(--joy-palette-success-400))",
|
||||||
alignItems: "center",
|
WebkitBackgroundClip: "text",
|
||||||
}}>
|
WebkitTextFillColor: "transparent",
|
||||||
<Typography level={"h2"}>Tranga</Typography>
|
fontWeight: "bold",
|
||||||
|
cursor: "default"
|
||||||
|
}}>Tranga</Typography>
|
||||||
|
<Box sx={{flexGrow: 1}} />
|
||||||
{children}
|
{children}
|
||||||
</Stack>
|
</Stack>
|
||||||
</Sheet>
|
</Sheet>
|
||||||
|