Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About Us Page #18

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;