Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add original images of Gomez Morin to Landing Page and Footer #71

Merged
merged 1 commit into from
Jun 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added GomezMorinFrontEnd/public/images/Contigo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions GomezMorinFrontEnd/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ const Footer = () => {
C.P.76000. Santiago de Querétaro.
</p>
</div>
<div className=" hidden md:px-4 md:pt-2">
<div className="md:px-4 md:pt-2">
<img
className="object-scale-down h-12"
src="/images/gomez_morin_blanco.png"
src="/images/Contigo.png"
/>
</div>
</div>
Expand Down
55 changes: 49 additions & 6 deletions GomezMorinFrontEnd/src/pages/LandingPage/index.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
import React from "react";
import Header from "../../components/Header.jsx";
import ImageCarousel from "../../components/ImageCarousel.jsx";
import Carousel1 from "../../../public/images/image_carousel_1.jpg";
import Carousel2 from "../../../public/images/image_carousel_2.jpeg";
import Carousel3 from "../../../public/images/image_carousel_3.jpg";
import Carousel4 from "../../../public/images/image_carousel_4.jpg";
import Carousel5 from "../../../public/images/image_carousel_5.png";
import Carousel1 from "../../../public/images/gomez-morin-1.jpg";
import Carousel2 from "../../../public/images/gomez-morin-2.jpg";
import Carousel3 from "../../../public/images/gomez-morin-3.jpg";
import Carousel4 from "../../../public/images/gomez-morin-4.jpg";
import Carousel5 from "../../../public/images/gomez-morin-5.jpg";
import Carousel6 from "../../../public/images/gomez-morin-6.jpg";
import Carousel7 from "../../../public/images/gomez-morin-7.jpg";
import Carousel8 from "../../../public/images/gomez-morin-8.jpg";
import Carousel9 from "../../../public/images/gomez-morin-9.jpg";
import Carousel10 from "../../../public/images/gomez-morin-10.jpg";
import Carousel11 from "../../../public/images/gomez-morin-11.jpg";
import Carousel12 from "../../../public/images/gomez-morin-12.jpg";
//import guideLinesPdf from "../../assets/Lineamientos de uso y disfrute.pdf";

const LandingPage = () => {
Expand Down Expand Up @@ -86,7 +93,43 @@ const LandingPage = () => {
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel1}
src={Carousel6}
/>
</div>
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel7}
/>
</div>
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel8}
/>
</div>
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel9}
/>
</div>
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel10}
/>
</div>
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel11}
/>
</div>
<div className="col-span-1 place-self-center">
<img
className="object-cover h-48 w-96 shadow-xl rounded-lg"
src={Carousel12}
/>
</div>
</div>
Expand Down