From 074ccb9422c88db56a59c492e2d57f598757f1a9 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Tue, 5 Nov 2024 23:16:41 +0100 Subject: [PATCH] feat: add the about section --- app/(root)/page.jsx | 2 ++ components/About.jsx | 28 ++++++++++++++++++++++++++++ components/Icon.jsx | 25 +++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 components/About.jsx create mode 100644 components/Icon.jsx diff --git a/app/(root)/page.jsx b/app/(root)/page.jsx index cfd8474..3dcbe61 100644 --- a/app/(root)/page.jsx +++ b/app/(root)/page.jsx @@ -1,3 +1,4 @@ +import About from "@/components/About"; import Features from "@/components/Features"; import Hero from "@/components/Hero"; @@ -38,6 +39,7 @@ function Home() { <> + Some other sections, of course! ); diff --git a/components/About.jsx b/components/About.jsx new file mode 100644 index 0000000..581d364 --- /dev/null +++ b/components/About.jsx @@ -0,0 +1,28 @@ +import Icon from "@/components/Icon"; + +function About() { + return ( +
+
+ +
+

+ About MERNMail +

+

+ MERNMail is a simple, open-source webmail application designed to + make managing your emails a breeze. Built using the powerful MERN + stack (MongoDB, Express, React, Node.JS), our application ensures a + smooth, responsive, and real-time user experience. +

+
+
+
+ ); +} + +export default About; diff --git a/components/Icon.jsx b/components/Icon.jsx new file mode 100644 index 0000000..501a671 --- /dev/null +++ b/components/Icon.jsx @@ -0,0 +1,25 @@ +const Icon = (props) => ( + + + + +); +export default Icon;