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

50 lines
1.4 KiB
React
Raw Normal View History

2024-11-05 23:16:41 +01:00
import About from "@/components/About";
2024-11-06 16:08:25 +01:00
import FAQ from "@/components/FAQ";
2024-11-05 22:32:29 +01:00
import Features from "@/components/Features";
2024-11-05 21:54:17 +01:00
import Hero from "@/components/Hero";
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() {
2024-11-05 21:54:17 +01:00
return (
<>
<Hero />
2024-11-05 22:32:29 +01:00
<Features />
2024-11-05 23:16:41 +01:00
<About />
2024-11-06 16:08:25 +01:00
<FAQ />
2024-11-05 21:54:17 +01:00
</>
);
2024-11-05 19:19:02 +01:00
}
2024-11-05 21:14:06 +01:00
export default Home;