25 lines
825 B
TypeScript
25 lines
825 B
TypeScript
import type { Metadata } from "next";
|
|
import Box from "./Box";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Vertex - Contact Us",
|
|
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 - Contact Us",
|
|
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 Contact() {
|
|
return (
|
|
<div className="pt-7">
|
|
<Box />
|
|
</div>
|
|
);
|
|
}
|