From 09d175344757b4d4315c709699e2b96126ff0e63 Mon Sep 17 00:00:00 2001 From: SandraBergstrom Date: Thu, 6 Jul 2023 10:55:50 +0000 Subject: [PATCH] #61 Add about page component --- src/pages/AboutPage.js | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/pages/AboutPage.js diff --git a/src/pages/AboutPage.js b/src/pages/AboutPage.js new file mode 100644 index 0000000..ce76671 --- /dev/null +++ b/src/pages/AboutPage.js @@ -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 ( + + + + + +
+

About

+

Welcome to the Travel Tickr About page!

+

+ Travel Tickr is a web application that allows users to share their + travel experiences, discover new destinations, and connect with + other travelers. +

+

+ Our mission is to inspire and empower individuals to explore the + world, create memories, and make meaningful connections through + travel. +

+
+ +
+ ); +}; + +export default AboutPage;