mhsf-dev/src/app/page.tsx

36 lines
903 B
TypeScript
Raw Normal View History

2024-07-23 18:49:21 -05:00
import ServerList from "@/components/ServerList";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "the MHSF project by dvelo",
2024-08-15 23:24:15 -05:00
description:
process.env.NEXT_PUBLIC_VERCEL_ENV != undefined
? `currently running in ${process.env.NEXT_PUBLIC_VERCEL_ENV} | commit (${(process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA as string).substring(0, 7)}}) "${process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_MESSAGE}" by ${process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_AUTHOR_NAME}`
: "currently running in dev",
twitter: {
images: [
{
url: "/public/imgs/icon-cf.png",
},
],
},
themeColor: "#000000",
openGraph: {
images: [
{
url: "/public/imgs/icon-cf.png",
},
],
},
};
2024-05-31 16:22:34 -05:00
export default function Home() {
return (
2024-07-23 18:49:21 -05:00
<main>
2024-08-24 12:37:08 -05:00
<div className="pt-[60px]">
2024-07-23 18:49:21 -05:00
<ServerList />
2024-05-31 16:22:34 -05:00
</div>
</main>
);
}