generated from CodeYourFuture/cyf-final-project-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from AnoshMalik/feature/About_page
Feature/about page
- Loading branch information
Showing
2 changed files
with
36 additions
and
15 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |