cleaner view for services
Some checks failed
continuous-integration/drone/tag Build is failing

This commit is contained in:
2025-10-10 18:09:32 +05:30
parent 4e26f2131c
commit 6c8d24c017
3 changed files with 7 additions and 13 deletions

View File

@@ -1,12 +1,7 @@
import * as React from "react";
import Container from "@mui/material/Container";
import Typography from "@mui/material/Typography";
import Box from "@mui/material/Box";
import Link from "@mui/material/Link";
import Grid from "@mui/material/Grid";
import Paper from "@mui/material/Paper";
import Services from "~/components/Services";
import ServiceList from "~/components/ServiceList";
export function meta() {
return [
@@ -37,11 +32,13 @@ const services = {
export default function Home() {
return (
<Container maxWidth="lg">
<Container
maxWidth={false}
>
<Box
sx={{
minHeight: "100vh",
backgroundImage: "url('/extended_sigil.png')",
backgroundImage: "url('/header_sigil.png')",
backgroundSize: "cover",
backgroundRepeat: "no-repeat",
backgroundPosition: "top center",
@@ -51,7 +48,7 @@ export default function Home() {
>
<Box sx={{ flex: 1 }} />
<Box sx={{ height: "60vh", overflowY: "auto", p: 2 }}>
<Box sx={{ height: "60vh", overflowY: "auto" }}>
<Services />
</Box>
</Box>