├── .gitignore ├── README.md ├── package.json ├── public ├── index.html ├── rent-icon.png └── rent-icon2.png └── src ├── App.js ├── Pages ├── About.jsx ├── Contact.jsx ├── Home.jsx ├── Models.jsx ├── Team.jsx └── TestimonialsPage.jsx ├── components ├── Banner.jsx ├── BookCar.jsx ├── CarBox.jsx ├── CarData.js ├── ChooseUs.jsx ├── Download.jsx ├── Faq.jsx ├── Footer.jsx ├── Hero.jsx ├── HeroPages.jsx ├── Navbar.jsx ├── PickCar.jsx ├── PlanTrip.jsx └── Testimonials.jsx ├── dist ├── styles.css └── styles.css.map ├── images ├── about │ ├── about-main.jpg │ ├── icon1.png │ ├── icon2.png │ └── icon3.png ├── banners │ ├── bg-1.png │ ├── bg-contact.png │ ├── bg02.png │ └── book-banner.png ├── book-car │ └── book-bg.png ├── cars-big │ ├── audi-box.png │ ├── audia1.jpg │ ├── benz-box.png │ ├── benz.jpg │ ├── bmw-box.png │ ├── bmw320.jpg │ ├── carforbox.jpg │ ├── golf6-box.png │ ├── golf6.jpg │ ├── passat-box.png │ ├── passatcc.jpg │ ├── toyota-box.png │ └── toyotacamry.jpg ├── chooseUs │ ├── bg.png │ ├── icon1.png │ ├── icon2.png │ ├── icon3.png │ └── main.png ├── download │ ├── appstore.svg │ └── googleapp.svg ├── faq │ └── car.png ├── hero │ ├── hero-bg.png │ ├── heroes-bg.png │ └── main-car.png ├── logo │ └── logo.png ├── plan │ ├── icon1.png │ ├── icon2.png │ └── icon3.png ├── team │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png └── testimonials │ ├── pfp1.jpg │ ├── pfp2.jpg │ └── user.png ├── index.js └── styles ├── AboutStyles ├── _about.scss └── _index.scss ├── BannerStyles ├── _banner.scss └── _index.scss ├── BookStyles ├── _book.scss └── _index.scss ├── ChooseStyles ├── _choose.scss └── _index.scss ├── ContactStyles ├── _contact.scss └── _index.scss ├── DownloadStyles ├── _download.scss └── _index.scss ├── FaqStyles ├── _faq.scss └── _index.scss ├── FooterStyles ├── _footer.scss └── _index.scss ├── HeroStyles ├── _hero.scss └── _index.scss ├── ModelsStyles ├── _index.scss └── _models.scss ├── NavbarStyles ├── _index.scss └── _navbar.scss ├── PickStyles ├── _index.scss └── _pick.scss ├── PlanTripStyles ├── _index.scss └── _plan.scss ├── TeamStyles ├── _index.scss └── _team.scss ├── TestimonialsStyles ├── _index.scss └── _testimonials.scss ├── global ├── _boilerplate.scss ├── _colors.scss ├── _index.scss └── _typhography.scss └── styles.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/public/index.html -------------------------------------------------------------------------------- /public/rent-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/public/rent-icon.png -------------------------------------------------------------------------------- /public/rent-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/public/rent-icon2.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/Pages/About.jsx -------------------------------------------------------------------------------- /src/Pages/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/Pages/Contact.jsx -------------------------------------------------------------------------------- /src/Pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/Pages/Home.jsx -------------------------------------------------------------------------------- /src/Pages/Models.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/Pages/Models.jsx -------------------------------------------------------------------------------- /src/Pages/Team.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/Pages/Team.jsx -------------------------------------------------------------------------------- /src/Pages/TestimonialsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/Pages/TestimonialsPage.jsx -------------------------------------------------------------------------------- /src/components/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Banner.jsx -------------------------------------------------------------------------------- /src/components/BookCar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/BookCar.jsx -------------------------------------------------------------------------------- /src/components/CarBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/CarBox.jsx -------------------------------------------------------------------------------- /src/components/CarData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/CarData.js -------------------------------------------------------------------------------- /src/components/ChooseUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/ChooseUs.jsx -------------------------------------------------------------------------------- /src/components/Download.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Download.jsx -------------------------------------------------------------------------------- /src/components/Faq.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Faq.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Hero.jsx -------------------------------------------------------------------------------- /src/components/HeroPages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/HeroPages.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/PickCar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/PickCar.jsx -------------------------------------------------------------------------------- /src/components/PlanTrip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/PlanTrip.jsx -------------------------------------------------------------------------------- /src/components/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/components/Testimonials.jsx -------------------------------------------------------------------------------- /src/dist/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/dist/styles.css -------------------------------------------------------------------------------- /src/dist/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/dist/styles.css.map -------------------------------------------------------------------------------- /src/images/about/about-main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/about/about-main.jpg -------------------------------------------------------------------------------- /src/images/about/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/about/icon1.png -------------------------------------------------------------------------------- /src/images/about/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/about/icon2.png -------------------------------------------------------------------------------- /src/images/about/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/about/icon3.png -------------------------------------------------------------------------------- /src/images/banners/bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/banners/bg-1.png -------------------------------------------------------------------------------- /src/images/banners/bg-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/banners/bg-contact.png -------------------------------------------------------------------------------- /src/images/banners/bg02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/banners/bg02.png -------------------------------------------------------------------------------- /src/images/banners/book-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/banners/book-banner.png -------------------------------------------------------------------------------- /src/images/book-car/book-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/book-car/book-bg.png -------------------------------------------------------------------------------- /src/images/cars-big/audi-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/audi-box.png -------------------------------------------------------------------------------- /src/images/cars-big/audia1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/audia1.jpg -------------------------------------------------------------------------------- /src/images/cars-big/benz-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/benz-box.png -------------------------------------------------------------------------------- /src/images/cars-big/benz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/benz.jpg -------------------------------------------------------------------------------- /src/images/cars-big/bmw-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/bmw-box.png -------------------------------------------------------------------------------- /src/images/cars-big/bmw320.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/bmw320.jpg -------------------------------------------------------------------------------- /src/images/cars-big/carforbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/carforbox.jpg -------------------------------------------------------------------------------- /src/images/cars-big/golf6-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/golf6-box.png -------------------------------------------------------------------------------- /src/images/cars-big/golf6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/golf6.jpg -------------------------------------------------------------------------------- /src/images/cars-big/passat-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/passat-box.png -------------------------------------------------------------------------------- /src/images/cars-big/passatcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/passatcc.jpg -------------------------------------------------------------------------------- /src/images/cars-big/toyota-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/toyota-box.png -------------------------------------------------------------------------------- /src/images/cars-big/toyotacamry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/cars-big/toyotacamry.jpg -------------------------------------------------------------------------------- /src/images/chooseUs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/chooseUs/bg.png -------------------------------------------------------------------------------- /src/images/chooseUs/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/chooseUs/icon1.png -------------------------------------------------------------------------------- /src/images/chooseUs/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/chooseUs/icon2.png -------------------------------------------------------------------------------- /src/images/chooseUs/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/chooseUs/icon3.png -------------------------------------------------------------------------------- /src/images/chooseUs/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/chooseUs/main.png -------------------------------------------------------------------------------- /src/images/download/appstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/download/appstore.svg -------------------------------------------------------------------------------- /src/images/download/googleapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/download/googleapp.svg -------------------------------------------------------------------------------- /src/images/faq/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/faq/car.png -------------------------------------------------------------------------------- /src/images/hero/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/hero/hero-bg.png -------------------------------------------------------------------------------- /src/images/hero/heroes-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/hero/heroes-bg.png -------------------------------------------------------------------------------- /src/images/hero/main-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/hero/main-car.png -------------------------------------------------------------------------------- /src/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/logo/logo.png -------------------------------------------------------------------------------- /src/images/plan/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/plan/icon1.png -------------------------------------------------------------------------------- /src/images/plan/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/plan/icon2.png -------------------------------------------------------------------------------- /src/images/plan/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/plan/icon3.png -------------------------------------------------------------------------------- /src/images/team/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/team/1.png -------------------------------------------------------------------------------- /src/images/team/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/team/2.png -------------------------------------------------------------------------------- /src/images/team/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/team/3.png -------------------------------------------------------------------------------- /src/images/team/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/team/4.png -------------------------------------------------------------------------------- /src/images/team/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/team/5.png -------------------------------------------------------------------------------- /src/images/team/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/team/6.png -------------------------------------------------------------------------------- /src/images/testimonials/pfp1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/testimonials/pfp1.jpg -------------------------------------------------------------------------------- /src/images/testimonials/pfp2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/testimonials/pfp2.jpg -------------------------------------------------------------------------------- /src/images/testimonials/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/images/testimonials/user.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/AboutStyles/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/AboutStyles/_about.scss -------------------------------------------------------------------------------- /src/styles/AboutStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./about"; 2 | -------------------------------------------------------------------------------- /src/styles/BannerStyles/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/BannerStyles/_banner.scss -------------------------------------------------------------------------------- /src/styles/BannerStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./banner"; 2 | -------------------------------------------------------------------------------- /src/styles/BookStyles/_book.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/BookStyles/_book.scss -------------------------------------------------------------------------------- /src/styles/BookStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./book"; 2 | -------------------------------------------------------------------------------- /src/styles/ChooseStyles/_choose.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/ChooseStyles/_choose.scss -------------------------------------------------------------------------------- /src/styles/ChooseStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./choose"; 2 | -------------------------------------------------------------------------------- /src/styles/ContactStyles/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/ContactStyles/_contact.scss -------------------------------------------------------------------------------- /src/styles/ContactStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./contact"; 2 | -------------------------------------------------------------------------------- /src/styles/DownloadStyles/_download.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/DownloadStyles/_download.scss -------------------------------------------------------------------------------- /src/styles/DownloadStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./download"; 2 | -------------------------------------------------------------------------------- /src/styles/FaqStyles/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/FaqStyles/_faq.scss -------------------------------------------------------------------------------- /src/styles/FaqStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./faq"; 2 | -------------------------------------------------------------------------------- /src/styles/FooterStyles/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/FooterStyles/_footer.scss -------------------------------------------------------------------------------- /src/styles/FooterStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./footer"; 2 | -------------------------------------------------------------------------------- /src/styles/HeroStyles/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/HeroStyles/_hero.scss -------------------------------------------------------------------------------- /src/styles/HeroStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./hero"; 2 | -------------------------------------------------------------------------------- /src/styles/ModelsStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./models"; 2 | -------------------------------------------------------------------------------- /src/styles/ModelsStyles/_models.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/ModelsStyles/_models.scss -------------------------------------------------------------------------------- /src/styles/NavbarStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./navbar"; 2 | -------------------------------------------------------------------------------- /src/styles/NavbarStyles/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/NavbarStyles/_navbar.scss -------------------------------------------------------------------------------- /src/styles/PickStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./pick"; 2 | -------------------------------------------------------------------------------- /src/styles/PickStyles/_pick.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/PickStyles/_pick.scss -------------------------------------------------------------------------------- /src/styles/PlanTripStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./plan"; 2 | -------------------------------------------------------------------------------- /src/styles/PlanTripStyles/_plan.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/PlanTripStyles/_plan.scss -------------------------------------------------------------------------------- /src/styles/TeamStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./team"; 2 | -------------------------------------------------------------------------------- /src/styles/TeamStyles/_team.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/TeamStyles/_team.scss -------------------------------------------------------------------------------- /src/styles/TestimonialsStyles/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./testimonials"; 2 | -------------------------------------------------------------------------------- /src/styles/TestimonialsStyles/_testimonials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/TestimonialsStyles/_testimonials.scss -------------------------------------------------------------------------------- /src/styles/global/_boilerplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/global/_boilerplate.scss -------------------------------------------------------------------------------- /src/styles/global/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/global/_colors.scss -------------------------------------------------------------------------------- /src/styles/global/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/global/_index.scss -------------------------------------------------------------------------------- /src/styles/global/_typhography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/global/_typhography.scss -------------------------------------------------------------------------------- /src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorRaynor/Cars/HEAD/src/styles/styles.scss --------------------------------------------------------------------------------