Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 69a9e8000c | |||
| 6afbc899e1 | |||
| fde6be3b18 | |||
| d27b793cd4 | |||
| 2cdee4a028 | |||
| 081e3bf2b7 | |||
| e4f40811b6 |
@@ -80,11 +80,10 @@ steps:
|
||||
--name homepage \
|
||||
-p 3001:3000 \
|
||||
-e NODE_ENV=production \
|
||||
--restart always \
|
||||
apps/homepage:$IMAGE_TAG
|
||||
|
||||
# Trigger rules
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
- tag
|
||||
- custom
|
||||
|
||||
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
||||
@@ -1,4 +1,5 @@
|
||||
import React from 'react';
|
||||
import Box from '@mui/material/Box';
|
||||
import {Grid, Paper, Link, Typography} from '@mui/material';
|
||||
|
||||
interface ServiceList {
|
||||
@@ -14,6 +15,12 @@ interface ServiceListProps {
|
||||
|
||||
const ServiceList: React.FC<ServiceListProps> = ({serviceList}) => {
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
flex: 1,
|
||||
overflowY: 'auto', // ✅ Scroll only inside this
|
||||
}}
|
||||
>
|
||||
<Grid container spacing={3} justifyContent="center">
|
||||
{serviceList.map((s) => (
|
||||
<Paper
|
||||
@@ -35,6 +42,7 @@ const ServiceList: React.FC<ServiceListProps> = ({serviceList}) => {
|
||||
</Paper>
|
||||
))}
|
||||
</Grid>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
@@ -18,9 +18,24 @@ const items = [
|
||||
icon: <PermMediaIcon/>,
|
||||
title: 'The Vox Sanctum',
|
||||
serviceList: [
|
||||
{ name: "Jellyseerr", url: "http://jellyseerr.aetoskia.com", desc: "Summon films and series from the digital void.", external: true },
|
||||
{ name: "Sonarr", url: "http://sonarr.aetoskia.com", desc: "Keep the endless chronicles of TV under iron control.", external: true },
|
||||
{ name: "Radarr", url: "http://radarr.aetoskia.com", desc: "Command the legions of cinema, enforce cinematic order.", external: true },
|
||||
{
|
||||
name: "Jellyseerr",
|
||||
url: "https://jellyseerr.aetoskia.com",
|
||||
desc: "Summon films and series from the digital void.",
|
||||
external: true
|
||||
},
|
||||
{
|
||||
name: "Sonarr",
|
||||
url: "https://sonarr.aetoskia.com",
|
||||
desc: "Keep the endless chronicles of TV under iron control.",
|
||||
external: true
|
||||
},
|
||||
{
|
||||
name: "Radarr",
|
||||
url: "https://radarr.aetoskia.com",
|
||||
desc: "Command the legions of cinema, enforce cinematic order.",
|
||||
external: true
|
||||
},
|
||||
],
|
||||
description:
|
||||
"Behold the archive of visual legends, where the eternal campaigns of film and series march forth in eternal crusade against chaos and forgetfulness.",
|
||||
@@ -29,9 +44,24 @@ const items = [
|
||||
icon: <CodeIcon/>,
|
||||
title: 'The Forge Conclave',
|
||||
serviceList: [
|
||||
{ name: "Gitea", url: "http://gitea.aetoskia.com", desc: "Forge and safeguard code like a sacred relic.", external: true },
|
||||
{ name: "Registry", url: "http://registry.aetoskia.com", desc: "Monitor core constructs of the digital empire.", external: true },
|
||||
{ name: "Drone", url: "http://drone.aetoskia.com", desc: "Automaton architect, building pipelines of perfection.", external: true },
|
||||
{
|
||||
name: "Gitea",
|
||||
url: "https://gitea.aetoskia.com",
|
||||
desc: "Forge and safeguard code like a sacred relic.",
|
||||
external: true
|
||||
},
|
||||
{
|
||||
name: "Registry",
|
||||
url: "https://registry.aetoskia.com",
|
||||
desc: "Monitor core constructs of the digital empire.",
|
||||
external: true
|
||||
},
|
||||
{
|
||||
name: "Drone",
|
||||
url: "https://drone.aetoskia.com",
|
||||
desc: "Automaton architect, building pipelines of perfection.",
|
||||
external: true
|
||||
},
|
||||
],
|
||||
description:
|
||||
"The bastion of creation — where code is forged in the fires of discipline, guarded like relics, and deployed with unyielding precision to uphold the empire's might.",
|
||||
@@ -40,8 +70,18 @@ const items = [
|
||||
icon: <MonitorHeartIcon/>,
|
||||
title: 'The Vigilant Watch',
|
||||
serviceList: [
|
||||
{ name: "Portainer", url: "http://portainer.aetoskia.com", desc: "Oversee the fleet of containers with unyielding vigilance.", external: true },
|
||||
{ name: "Traefik", url: "http://traefik.aetoskia.com", desc: "Marshal your gateways and protect the flow between realms.", external: true },
|
||||
{
|
||||
name: "Portainer",
|
||||
url: "https://portainer.aetoskia.com",
|
||||
desc: "Oversee the fleet of containers with unyielding vigilance.",
|
||||
external: true
|
||||
},
|
||||
{
|
||||
name: "Traefik",
|
||||
url: "https://traefik.aetoskia.com",
|
||||
desc: "Marshal your gateways and protect the flow between realms.",
|
||||
external: true
|
||||
},
|
||||
],
|
||||
description:
|
||||
"Eyes ever watchful, guarding the realm’s sanctity — these sentinels oversee the flow of life and command the paths between digital dominions.",
|
||||
@@ -142,7 +182,6 @@ export default function Services() {
|
||||
gap: 2,
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<Box
|
||||
sx={{
|
||||
display: {xs: 'none', sm: 'flex'},
|
||||
@@ -198,7 +237,6 @@ export default function Services() {
|
||||
handleItemClick={handleItemClick}
|
||||
selectedFeature={selectedFeature}
|
||||
/>
|
||||
</div>
|
||||
<Box
|
||||
sx={{
|
||||
display: {xs: 'none', sm: 'flex'},
|
||||
@@ -209,6 +247,7 @@ export default function Services() {
|
||||
variant="outlined"
|
||||
sx={{
|
||||
display: {xs: 'none', sm: 'flex'},
|
||||
maxHeight: '50vh',
|
||||
}}
|
||||
>
|
||||
<ServiceList serviceList={selectedFeature.serviceList} />
|
||||
|
||||
@@ -13,23 +13,6 @@ export function meta() {
|
||||
];
|
||||
}
|
||||
|
||||
const services = {
|
||||
media: [
|
||||
{ name: "Jellyseerr", url: "http://jellyseerr.aetoskia.com", desc: "Summon films and series from the digital void.", external: true },
|
||||
{ name: "Sonarr", url: "http://sonarr.aetoskia.com", desc: "Keep the endless chronicles of TV under iron control.", external: true },
|
||||
{ name: "Radarr", url: "http://radarr.aetoskia.com", desc: "Command the legions of cinema, enforce cinematic order.", external: true },
|
||||
{ name: "qBit", url: "http://qbit.aetoskia.com", desc: "Torrent war engine, fetching data across the nether realms.", external: true },
|
||||
],
|
||||
codebase: [
|
||||
{ name: "Gitea", url: "http://gitea.aetoskia.com", desc: "Forge and safeguard code like a sacred relic.", external: true },
|
||||
{ name: "Registry", url: "http://registry.aetoskia.com", desc: "Monitor core constructs of the digital empire.", external: true },
|
||||
{ name: "Drone", url: "http://drone.aetoskia.com", desc: "Automaton architect, building pipelines of perfection.", external: true },
|
||||
],
|
||||
monitoring: [
|
||||
{ name: "Portainer", url: "http://portainer.aetoskia.com", desc: "Oversee the fleet of containers with unyielding vigilance.", external: true },
|
||||
],
|
||||
};
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<Container
|
||||
|
||||
Reference in New Issue
Block a user