From b5a6678cca0b4521c0ccc5c47d289683f5d46ce2 Mon Sep 17 00:00:00 2001 From: Jason Chau Date: Fri, 19 Jan 2024 11:06:20 -0800 Subject: [PATCH] About Us page --- src/app/about/page.js | 8 ++++++- src/components/about/Us.js | 46 +++++++++++++++++++++++++++++++++++--- 2 files changed, 50 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.js b/src/app/about/page.js index a54c709..72c9f6d 100644 --- a/src/app/about/page.js +++ b/src/app/about/page.js @@ -1,7 +1,13 @@ import React from "react"; +import Us from "@/components/about/Us"; const page = () => { - return
page
; + return ( +
+ {" "} + {" "} +
+ ); }; export default page; diff --git a/src/components/about/Us.js b/src/components/about/Us.js index 94a55dc..c5ccdf2 100644 --- a/src/components/about/Us.js +++ b/src/components/about/Us.js @@ -1,7 +1,47 @@ import React from "react"; +import Image from "next/image"; +import image from "@/public/assets/about/aboutUs.svg"; +import { GrTopCorner } from "react-icons/gr"; +import { GrBottomCorner } from "react-icons/gr"; -const us = () => { - return
us
; +const Us = () => { + return ( +
+
+ +

+ {" "} + ABOUT US +

+ +
+
+
+ + {" "} + HSP creates opportunities for its members to collaborate with + industry professionals and organizations, engage in projects and + research that   are relevant to the field of aerospace + engineering. + +
+ + HSP regularly conducts meetings and work sessions that build towards + competitions. + +
+
+ +
+
+
+ ); }; -export default us; +export default Us;