Skip to content

Commit

Permalink
Merge pull request #74 from AnoshMalik/feature/About_page
Browse files Browse the repository at this point in the history
Feature/about page
  • Loading branch information
azadehroshan authored May 20, 2023
2 parents 7c991dd + da91c0a commit 863e97d
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 15 deletions.
Binary file added client/src/assets/T-shirt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 36 additions & 15 deletions client/src/pages/About.js
Original file line number Diff line number Diff line change
@@ -1,30 +1,51 @@
import React from "react";
import Header from "../Components/Header";
import Footer from "../Components/Footer";
import { Container, Row, Col, Card } from "react-bootstrap";
import aboutImg from "../assets/T-shirt.png";

const About = ({ user }) => {
const aboutText =
"Our all-in-one writing helper tool is designed to reduce mistake, improve grammar and suggest phrases";
return (
<div>
<Header historybutton="none" text={aboutText} user={user} />
<Container style={{ backgroundColor: "#fff" }} fluid>
<Row style={{ padding: "2% 12% 8% 20%" }}>
<Col>
<img
src={aboutImg}
alt="about"
style={{ width: "300px", marginTop: "30px" }}
/>
</Col>
<Col>
<Card className="p-4 rounded bg-light mt-4">
<p
style={{
fontSize: "16px",
lineHeight: "1.6em",
fontFamily: "Lato",
fontWeight: "500",
}}
>
TOOT project enhancing a critical aspect of communicating Code
Your Future between mentors and students. With the
implementation of the Open AI (Chat GPT) API to TooT project,
the web app creates written interaction for people with
receiving suggestions and corrections words / sentences. From
now, do not worry about conveying your ideas and words on
feedback forms, chat and emails. With authorization, users
journey have been secured the Git Hub log in account while using
the app.
</p>
</Card>
</Col>
</Row>
</Container>
<Footer aboutlink="none" />
</div>
);
};

export default About;

// const About = () => (
// <main role="main">
// <div>
// <h1>About</h1>
// <p>
// Starter kit for full-stack JavaScript projects. For more information,
// see the wiki:
// </p>
// <a href="https://github.com/textbook/starter-kit/wiki">Wiki</a>
// </div>
// </main>
// );

// export default About;

0 comments on commit 863e97d

Please sign in to comment.