Compare commits
3 Commits
a273af5ed9
...
e5641e0690
Author | SHA1 | Date | |
---|---|---|---|
e5641e0690 | |||
b7ee80b4a4 | |||
9f8d874822 |
@@ -33,6 +33,9 @@
|
||||
<!-- ABOUT THE PROJECT -->
|
||||
## Screenshots
|
||||
|
||||
|||
|
||||
|---|---|---|
|
||||
|||
|
||||
|
||||
## 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>
|
||||
<Badge color={"danger"} invisible={apiConnected} badgeContent={"!"}>
|
||||
<Button onClick={() => setShowSettings(true)}>Settings</Button>
|
||||
<Button onClick={() => setShowJobs(true)}>Jobs</Button>
|
||||
</Badge>
|
||||
<Button onClick={() => setShowJobs(true)}>Jobs</Button>
|
||||
</Header>
|
||||
<Settings open={showSettings} setOpen={setShowSettings} setApiUri={setApiUri} setConnected={setApiConnected} />
|
||||
<Search open={showSearch} setOpen={setShowSearch} />
|
||||
|
@@ -57,7 +57,7 @@ export default function MangaList({connected, setShowSearch}: {connected: boolea
|
||||
<Badge invisible sx={{margin: "8px !important"}}>
|
||||
<Card onClick={() => setShowSearch(true)} sx={{height:"fit-content",width:"fit-content"}}>
|
||||
<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 sx={{
|
||||
background: 'rgba(234, 119, 246, 0.14)',
|
||||
@@ -65,7 +65,7 @@ export default function MangaList({connected, setShowSearch}: {connected: boolea
|
||||
webkitBackdropFilter: 'blur(6.9px)',
|
||||
}}/>
|
||||
<CardContent>
|
||||
<Box style={{height: CardHeight + "px", width: CardWidth + 10 + "px"}} >
|
||||
<Box style={{height: CardHeight + "px", width: CardWidth + "px"}} >
|
||||
<Typography level={"h1"}>Search</Typography>
|
||||
</Box>
|
||||
</CardContent>
|
||||
|
@@ -1,18 +1,22 @@
|
||||
import Sheet from "@mui/joy/Sheet";
|
||||
import {Stack, Typography} from "@mui/joy";
|
||||
import {Box, Stack, Typography} from "@mui/joy";
|
||||
import {ReactElement} from "react";
|
||||
import './Header.css';
|
||||
|
||||
export default function Header({children} : {children? : ReactElement<any, any> | ReactElement<any,any>[] | undefined}) : ReactElement {
|
||||
|
||||
return (
|
||||
<Sheet className={"header"}>
|
||||
<Stack direction={"row"}
|
||||
spacing={4}
|
||||
sx={{
|
||||
justifyContent: "flex-start",
|
||||
alignItems: "center",
|
||||
}}>
|
||||
<Typography level={"h2"}>Tranga</Typography>
|
||||
<Stack direction={"row"} spacing={2} sx={{width: "100%"}}>
|
||||
<img src={"/blahaj.png"} style={{cursor: "grab"}}/>
|
||||
<Typography level={"h2"} sx={{
|
||||
background: "linear-gradient(110deg, var(--joy-palette-primary-solidBg), var(--joy-palette-success-400))",
|
||||
WebkitBackgroundClip: "text",
|
||||
WebkitTextFillColor: "transparent",
|
||||
fontWeight: "bold",
|
||||
cursor: "default"
|
||||
}}>Tranga</Typography>
|
||||
<Box sx={{flexGrow: 1}} />
|
||||
{children}
|
||||
</Stack>
|
||||
</Sheet>
|
||||
|