mernmail-website/app/(root)/page.jsx

38 lines
1.2 KiB
React
Raw Normal View History

2024-11-05 19:19:02 +01:00
export const metadata = {
title: "MERNMail - a MERN stack webmail application",
description:
"MERNMail: Open-source webmail app built with MERN stack. Send, receive, & manage emails easily. Explore and contribute today!",
openGraph: {
title: "MERNMail - a MERN stack webmail application",
description:
"MERNMail: Open-source webmail app built with MERN stack. Send, receive, & manage emails easily. Explore and contribute today!",
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}`,
type: "website",
images: [
{
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/mernmail-cover.png`,
width: 2560,
height: 1440,
2024-11-05 21:14:06 +01:00
alt: "MERNMail - a MERN stack webmail application"
}
]
2024-11-05 19:19:02 +01:00
},
twitter: {
card: "summary_large_image",
site: "@MERNMail",
title: "MERNMail - a MERN stack webmail application",
description:
"MERNMail: Open-source webmail app built with MERN stack. Send, receive, & manage emails easily. Explore and contribute today!",
images: [
2024-11-05 21:14:06 +01:00
`${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/mernmail-cover.png`
2024-11-05 19:19:02 +01:00
],
2024-11-05 21:14:06 +01:00
creator: "@MERNMail"
}
2024-11-05 19:19:02 +01:00
};
2024-11-05 21:14:06 +01:00
function Home() {
return <div>Placeholder</div>;
2024-11-05 19:19:02 +01:00
}
2024-11-05 21:14:06 +01:00
export default Home;