├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── assets ├── heroImg.jpg ├── moon.jpg ├── pod.jpg └── space.mp4 ├── components ├── Footer.js ├── FooterStyles.css ├── Form.js ├── FormStyles.css ├── HeroImage.js ├── HeroImageStyles.css ├── Navbar.js ├── NavbarStyles.css ├── Pricing.js ├── PricingStyles.css ├── Training.js ├── TrainingStyles.css ├── Video.js └── VideoStyles.css ├── index.css ├── index.js └── routes ├── Contact.js ├── Home.js ├── Pricing.js └── Training.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/heroImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/assets/heroImg.jpg -------------------------------------------------------------------------------- /src/assets/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/assets/moon.jpg -------------------------------------------------------------------------------- /src/assets/pod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/assets/pod.jpg -------------------------------------------------------------------------------- /src/assets/space.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/assets/space.mp4 -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/FooterStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/FooterStyles.css -------------------------------------------------------------------------------- /src/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/Form.js -------------------------------------------------------------------------------- /src/components/FormStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/FormStyles.css -------------------------------------------------------------------------------- /src/components/HeroImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/HeroImage.js -------------------------------------------------------------------------------- /src/components/HeroImageStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/HeroImageStyles.css -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/NavbarStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/NavbarStyles.css -------------------------------------------------------------------------------- /src/components/Pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/Pricing.js -------------------------------------------------------------------------------- /src/components/PricingStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/PricingStyles.css -------------------------------------------------------------------------------- /src/components/Training.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/Training.js -------------------------------------------------------------------------------- /src/components/TrainingStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/TrainingStyles.css -------------------------------------------------------------------------------- /src/components/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/Video.js -------------------------------------------------------------------------------- /src/components/VideoStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/components/VideoStyles.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/routes/Contact.js -------------------------------------------------------------------------------- /src/routes/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/routes/Home.js -------------------------------------------------------------------------------- /src/routes/Pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/routes/Pricing.js -------------------------------------------------------------------------------- /src/routes/Training.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/Galaxy-Travel-React/HEAD/src/routes/Training.js --------------------------------------------------------------------------------