diff --git a/app/(root)/page.jsx b/app/(root)/page.jsx index 2c10383..94b39cc 100644 --- a/app/(root)/page.jsx +++ b/app/(root)/page.jsx @@ -1,3 +1,5 @@ +import Hero from "@/components/Hero"; + export const metadata = { title: "MERNMail - a MERN stack webmail application", description: @@ -31,7 +33,12 @@ export const metadata = { }; function Home() { - return
Placeholder
; + return ( + <> + + Some other sections, of course! + + ); } export default Home; diff --git a/components/Hero.jsx b/components/Hero.jsx new file mode 100644 index 0000000..fc78760 --- /dev/null +++ b/components/Hero.jsx @@ -0,0 +1,53 @@ +import Image from "next/image"; +import Link from "next/link"; + +function Hero() { + return ( +
+
+

+ Revolution­ize your inbox{" "} + with{" "} + + + MERNMail + +

+

+ Experience the future of email with MERNMail. Built with the MERN + stack for performance and security. Join and take control of your + inbox today! +

+
+ + Get started + + + View demo + +
+
+
+
+ MERNMail screenshot +
+
+
+ ); +} + +export default Hero; diff --git a/public/screenshot.png b/public/screenshot.png new file mode 100644 index 0000000..2d15344 Binary files /dev/null and b/public/screenshot.png differ