status fix
This commit is contained in:
parent
d8b2ad1987
commit
bd1677ae0d
@ -91,7 +91,7 @@ export default function Box() {
|
|||||||
<div className="relative">
|
<div className="relative">
|
||||||
<div className="flex h-[28px] w-full overflow-visible 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",
|
status: "downtime",
|
||||||
width: "0.5%",
|
width: "0.5%",
|
||||||
@ -99,7 +99,7 @@ export default function Box() {
|
|||||||
},
|
},
|
||||||
{ status: "operational", width: "28%", details: "No incident reported" },
|
{ status: "operational", width: "28%", details: "No incident reported" },
|
||||||
{ status: "degraded", width: "0.5%", details: "Updating SMTP" },
|
{ 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) => (
|
].map((segment, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
@ -227,13 +227,13 @@ export default function Box() {
|
|||||||
<div className="relative">
|
<div className="relative">
|
||||||
<div className="flex h-[28px] w-full overflow-visible 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",
|
status: "degraded",
|
||||||
width: "0.5%",
|
width: "0.5%",
|
||||||
details: "Resolved - Deprecated DB API",
|
details: "Resolved - Deprecated DB API",
|
||||||
},
|
},
|
||||||
{ status: "operational", width: "9%", details: "No incident reported" },
|
{ status: "operational", width: "19%", details: "No incident reported" },
|
||||||
].map((segment, index) => (
|
].map((segment, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
|
@ -3,23 +3,23 @@ import type { Metadata } from "next";
|
|||||||
import Box from "./Box";
|
import Box from "./Box";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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",
|
title: "Vertex - Server Status",
|
||||||
description:
|
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.",
|
"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",
|
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() {
|
export default function Server() {
|
||||||
return (
|
return (
|
||||||
<div className="pt-7">
|
<div className="pt-7">
|
||||||
<Box />
|
<Box />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user