container

This commit is contained in:
2025-03-11 22:37:14 -03:00
parent ac4d429eca
commit 9ddd80adf1
3 changed files with 29 additions and 4 deletions

View File

@@ -1 +1,23 @@
<div>...</div>
<div
class="text-black bg-gray-100 rounded-2xl p-12 bg-linear-to-tr from-green-secondary to-yellow-primary"
>
<div class="xl:grid grid-cols-2 gap-5 h-96">
<div class="space-y-2.5">
<h1 class="text-3xl font-medium">
Garanta a capacitação para sua empresa
</h1>
<p>
Junte-se a milhares de profissionais capacitados e preparados
para agir com segurança e eficiência. Garanta um ambiente mais
seguro com uma certificação reconhecida.
</p>
</div>
<div class="">...</div>
</div>
<div
class="text-white bg-green-primary border border-white rounded-2xl p-5"
>
...
</div>
</div>

View File

@@ -8,7 +8,7 @@
<title>EDUSEG&reg;</title>
</head>
<body>
<div class="@container max-w-6xl mx-auto px-2.5">
<div class="max-w-7xl mx-auto px-2.5 space-y-5">
<slot />
</div>
</body>

View File

@@ -1,7 +1,7 @@
---
import "../styles/global.css";
import Welcome from "../components/Welcome.astro";
import { Regular as Logo } from "../components/Logo.jsx";
import { Regular } from "../components/Logo.jsx";
import Layout from "../layouts/Layout.astro";
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
@@ -9,6 +9,9 @@ import Layout from "../layouts/Layout.astro";
---
<Layout>
<Logo className="w-36" />
<div class="mt-5">
<Regular className="w-46" />
</div>
<Welcome />
</Layout>