Skip to content

Commit

Permalink
#61 Add about page component
Browse files Browse the repository at this point in the history
  • Loading branch information
SandraBergstrom committed Jul 6, 2023
1 parent e9bc519 commit 09d1753
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/pages/AboutPage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import React from "react";

import Col from "react-bootstrap/Col";
import Row from "react-bootstrap/Row";
import Image from "react-bootstrap/Image";

import styles from "../styles/AboutPage.module.css"
import appStyles from "../App.module.css"

const AboutPage = () => {
return (
<Row>
<Col
md={6}
className={`my-auto d-none d-md-block p-2`}
>
<Image
className={`${appStyles.FillerImage}`}
src={
"https://res.cloudinary.com/sandrabergstrom/image/upload/v1687344960/footstep_g2jfrl.png"
}
/>
</Col>
<Col
md={6}
className={`my-auto d-md-block p-2`}
>
<div className={styles.Info}>
<h1>About</h1>
<p>Welcome to the Travel Tickr About page!</p>
<p>
Travel Tickr is a web application that allows users to share their
travel experiences, discover new destinations, and connect with
other travelers.
</p>
<p>
Our mission is to inspire and empower individuals to explore the
world, create memories, and make meaningful connections through
travel.
</p>
</div>
</Col>
</Row>
);
};

export default AboutPage;

0 comments on commit 09d1753

Please sign in to comment.