style(index): switch to shadcn/ui zinc theme
All checks were successful
build dist / build-dist (push) Successful in 27s
All checks were successful
build dist / build-dist (push) Successful in 27s
This commit is contained in:
parent
961554a15d
commit
b58637ee69
33 changed files with 1097 additions and 88 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
import "/src/css/app.css";
|
||||
import ServiceCard from "../components/ServiceCard.astro";
|
||||
import ServiceCard from "@/components/ServiceCard.astro";
|
||||
|
||||
const services = [
|
||||
{ serviceName: "WG Easy" },
|
||||
|
@ -29,7 +29,7 @@ const services = [
|
|||
];
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<html lang="en" class="dark">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta
|
||||
|
@ -39,9 +39,8 @@ const services = [
|
|||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<title>Homepage</title>
|
||||
</head>
|
||||
<body
|
||||
class="flex items-center justify-center min-h-screen p-4 bg-neutral-900 text-neutral-300"
|
||||
>
|
||||
|
||||
<body class="flex items-center justify-center min-h-screen">
|
||||
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
|
||||
{
|
||||
services.map((service) => (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue