2025-05-09 00:49:41 +07:00

26 lines
887 B
TypeScript

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",
},
};
export default function Server() {
return (
<div className="pt-7">
<Box />
</div>
);
}