aetos sigil

This commit is contained in:
2025-09-22 19:33:18 +05:30
parent 7631b9d830
commit 10bab6c44c
2 changed files with 146 additions and 136 deletions

View File

@@ -5,14 +5,11 @@ import Box from "@mui/material/Box";
import Link from "@mui/material/Link"; import Link from "@mui/material/Link";
import Grid from "@mui/material/Grid"; import Grid from "@mui/material/Grid";
import Paper from "@mui/material/Paper"; import Paper from "@mui/material/Paper";
import { Link as ReactRouterLink } from "react-router";
import ProTip from "~/components/ProTip";
import Copyright from "~/components/Copyright";
export function meta() { export function meta() {
return [ return [
{ title: "Material UI - React Router example in TypeScript" }, {title: "Material UI - React Router example in TypeScript"},
{ {
name: "description", name: "description",
content: content:
@@ -69,21 +66,33 @@ export default function Home() {
// @ts-ignore // @ts-ignore
return ( return (
<Container maxWidth="lg"> <Container maxWidth="lg">
{/* Dashboard section */} <Box
<Box sx={{ py: 6 }}> sx={{
<Typography minHeight: "100vh",
variant="h3" backgroundImage: "url('/aetos_sigil.jpg')",
align="center" backgroundSize: "cover",
gutterBottom backgroundRepeat: "no-repeat",
sx={{ color: "success.main" }} backgroundPosition: "center",
display: "flex",
flexDirection: "column",
}}
> >
{/* Top section */}
<Box sx={{py: 6, textAlign: "center"}}>
<Typography variant="h3" sx={{color: "success.main"}}>
Aetos Hideout Aetos Hideout
</Typography> </Typography>
</Box>
{/* Spacer pushes bottom part down */}
<Box sx={{flex: 1}}/>
{/* Bottom dashboard */}
<Container maxWidth="lg" sx={{mb: 4}}>=
<Typography <Typography
variant="h5" variant="h5"
align="center" align="center"
sx={{ color: "warning.main", mt: 4, mb: 2 }} sx={{color: "warning.main", mt: 4, mb: 2}}
> >
Core Services Core Services
</Typography> </Typography>
@@ -104,11 +113,11 @@ export default function Home() {
target={s.external ? "_blank" : undefined} target={s.external ? "_blank" : undefined}
rel="noopener" rel="noopener"
underline="none" underline="none"
sx={{ fontSize: 18, fontWeight: "bold", color: "success.main" }} sx={{fontSize: 18, fontWeight: "bold", color: "success.main"}}
> >
{s.name} {s.name}
</Link> </Link>
<Typography variant="body2" sx={{ mt: 1, color: "#ccc" }}> <Typography variant="body2" sx={{mt: 1, color: "#ccc"}}>
{s.desc} {s.desc}
</Typography> </Typography>
</Paper> </Paper>
@@ -119,7 +128,7 @@ export default function Home() {
<Typography <Typography
variant="h5" variant="h5"
align="center" align="center"
sx={{ color: "warning.main", mt: 4, mb: 2 }} sx={{color: "warning.main", mt: 4, mb: 2}}
> >
Media Services Media Services
</Typography> </Typography>
@@ -140,17 +149,18 @@ export default function Home() {
target={s.external ? "_blank" : undefined} target={s.external ? "_blank" : undefined}
rel="noopener" rel="noopener"
underline="none" underline="none"
sx={{ fontSize: 18, fontWeight: "bold", color: "success.main" }} sx={{fontSize: 18, fontWeight: "bold", color: "success.main"}}
> >
{s.name} {s.name}
</Link> </Link>
<Typography variant="body2" sx={{ mt: 1, color: "#ccc" }}> <Typography variant="body2" sx={{mt: 1, color: "#ccc"}}>
{s.desc} {s.desc}
</Typography> </Typography>
</Paper> </Paper>
</Grid> </Grid>
))} ))}
</Grid> </Grid>
</Container>
</Box> </Box>
</Container> </Container>
); );

BIN
public/aetos_sigil.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 KiB