-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit introduces a new page dedicated to displaying the real-time status of GitHub's services. The page integrates a status component and provides users with up-to-date information on service availability.
- Loading branch information
Showing
2 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
import CTA from '../sections/CTA.astro'; | ||
import Footer from '../components/layout/Footer.astro'; | ||
import Header from '../components/layout/Header.astro'; | ||
import Layout from '../layouts/Layout.astro'; | ||
import Sidebar from '../layouts/Sidebar.astro'; | ||
--- | ||
|
||
<Layout title="Gitset - Advanced AI-Driven GitHub Tools Suite."> | ||
<Sidebar /> | ||
<div class="flex flex-col min-h-screen"> | ||
<div class="hidden lg:block fixed w-64 h-full"> | ||
<Sidebar /> | ||
</div> | ||
|
||
<div class="flex-1 lg:ml-64 flex flex-col"> | ||
<Header /> | ||
<main class="flex-1 overflow-x-hidden overflow-y-auto bg-gray-50"> | ||
<div class="container mx-auto px-4 sm:px-6 lg:px-8 py-8 mt-16 lg:mt-0 top"> | ||
<div class="flex justify-center mt-16"></div> | ||
<CTA | ||
|
||
align="center" | ||
title={`<span id="cta-title">Github <strong>Services Status</strong></span>`} | ||
description={` | ||
<span id="cta-description"> | ||
Monitor the real-time operational status of GitHub's core services including Actions, API, Git Operations, and more. Stay informed about the current state of GitHub's infrastructure and services. | ||
</span> | ||
`} | ||
> | ||
<div class="flex mx-auto my-0 gap-2.5 mt-4 relative top-4 justify-center"> | ||
<a href="/"> | ||
<button | ||
|
||
class="dark:text-neutral-700 text-sm text-neutral-200 dark:bg-neutral-200 bg-neutral-700 px-6 py-4 rounded-[10px] transition-all duration-300 hover:text-[rgb(91,207,218)] dark:hover:text-[rgb(91,207,218)] cursor-pointer whitespace-nowrap flex items-center justify-center order-2 sm:order-1" | ||
> | ||
Back | ||
</button> | ||
</a> | ||
|
||
</CTA> | ||
</div> | ||
</main> | ||
<Footer /> | ||
</div> | ||
</div> | ||
</Layout> |