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;