Skip to content

Commit

Permalink
Merge pull request #18 from acm-ucr/chateauj/AboutUs
Browse files Browse the repository at this point in the history
About Us Page
  • Loading branch information
rfairooz authored Jan 20, 2024
2 parents a42a39f + b5a6678 commit bbe2e74
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 4 deletions.
8 changes: 7 additions & 1 deletion src/app/about/page.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import React from "react";
import Us from "@/components/about/Us";

const page = () => {
return <div>page</div>;
return (
<div>
{" "}
<Us />{" "}
</div>
);
};

export default page;
46 changes: 43 additions & 3 deletions src/components/about/Us.js
Original file line number Diff line number Diff line change
@@ -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 <div>us</div>;
const Us = () => {
return (
<div className="text-center flex flex-col justify-center items-center">
<div className="my-40 max-h-0 translate-y-12 flex flex-col1">
<GrBottomCorner
size={50}
className="origin-top-left translate-x-7 translate-y-5 rotate-90"
/>
<h1 className="font-montserrat ">
{" "}
<strong> ABOUT US</strong>
</h1>
<GrTopCorner
size={50}
className="origin-top-right translate-x-5 translate-y-8 rotate-90"
/>
</div>
<div className="grid grid-cols-2 justify-center w-8/12">
<div className="flex flex-col text-center justify-center items-center font-montserrat">
<b className="text-lg w-11/12">
{" "}
HSP creates opportunities for its members to collaborate with
industry professionals and organizations, engage in projects and
research that &nbsp; are relevant to the field of aerospace
engineering.
</b>
<br />
<b className="text-lg w-11/12">
HSP regularly conducts meetings and work sessions that build towards
competitions.
</b>
</div>
<div className="flex justify-center items-center w-11/12">
<Image width={500} alt="" src={image} />
</div>
</div>
</div>
);
};

export default us;
export default Us;

0 comments on commit bbe2e74

Please sign in to comment.