status fix

This commit is contained in:
Reihan 2025-05-09 00:49:41 +07:00
parent d8b2ad1987
commit bd1677ae0d
2 changed files with 18 additions and 18 deletions

View File

@ -91,7 +91,7 @@ export default function Box() {
<div className="relative">
<div className="flex h-[28px] w-full overflow-visible relative">
{[
{ status: "operational", width: "10%", details: "No incident reported" },
{ status: "operational", width: "20%", details: "No incident reported" },
{
status: "downtime",
width: "0.5%",
@ -99,7 +99,7 @@ export default function Box() {
},
{ status: "operational", width: "28%", details: "No incident reported" },
{ status: "degraded", width: "0.5%", details: "Updating SMTP" },
{ status: "operational", width: "61%", details: "No incident reported" },
{ status: "operational", width: "51%", details: "No incident reported" },
].map((segment, index) => (
<div
key={index}
@ -227,13 +227,13 @@ export default function Box() {
<div className="relative">
<div className="flex h-[28px] w-full overflow-visible relative">
{[
{ status: "operational", width: "90%", details: "No incident reported" },
{ status: "operational", width: "80%", details: "No incident reported" },
{
status: "degraded",
width: "0.5%",
details: "Resolved - Deprecated DB API",
},
{ status: "operational", width: "9%", details: "No incident reported" },
{ status: "operational", width: "19%", details: "No incident reported" },
].map((segment, index) => (
<div
key={index}

View File

@ -3,23 +3,23 @@ import type { Metadata } from "next";
import Box from "./Box";
export const metadata: Metadata = {
title: "Vertex - Server Status",
description:
"Vertex thrives on the power of community. By connecting users across the globe, we are creating a network that fosters collaboration, innovation, and shared success.",
openGraph: {
type: "website",
url: "https://dapp-ai-proj-02.vercel.app/dashboard/server",
title: "Vertex - Server Status",
description:
"Vertex thrives on the power of community. By connecting users across the globe, we are creating a network that fosters collaboration, innovation, and shared success.",
images: "https://dapp-ai-proj-02.vercel.app/og-banner.png",
},
"Vertex thrives on the power of community. By connecting users across the globe, we are creating a network that fosters collaboration, innovation, and shared success.",
openGraph: {
type: "website",
url: "https://dapp-ai-proj-02.vercel.app/dashboard/server",
title: "Vertex - Server Status",
description:
"Vertex thrives on the power of community. By connecting users across the globe, we are creating a network that fosters collaboration, innovation, and shared success.",
images: "https://dapp-ai-proj-02.vercel.app/og-banner.png",
},
};
export default function Server() {
return (
<div className="pt-7">
<Box />
</div>
);
return (
<div className="pt-7">
<Box />
</div>
);
}