-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb6c36d
commit 4856bde
Showing
32 changed files
with
163 additions
and
10 deletions.
There are no files selected for viewing
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.
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
/* .carouselImg { | ||
width: 100%; | ||
} */ | ||
body{ | ||
background-color: #ededed !important; | ||
} | ||
#carouselExampleControls { | ||
height: 350px; | ||
z-index: -1; | ||
|
||
|
||
} | ||
|
||
|
||
|
||
.card-container { | ||
z-index: 1; | ||
} | ||
|
||
|
||
.row-container { | ||
/* overflow-x: auto; */ | ||
background-color: white; | ||
} | ||
|
||
.row-img { | ||
/* height: 200px; */ | ||
width: 180px; | ||
/* margin: 20px; | ||
padding: 10px; */ | ||
} | ||
::-webkit-scrollbar { | ||
width: 0; /* Remove scrollbar space */ | ||
background: transparent; /* Optional: just make scrollbar invisible */ | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,41 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
// import ImgSrc from '../images/carousel_img1.jpg'; | ||
// import ImgSrc2 from '../images/ci_img2.jpg'; | ||
// import ImgSrc3 from '../images/ci_img3.jpg'; | ||
|
||
export default function Carousel() { | ||
return ( | ||
<div>Carousel</div> | ||
<> | ||
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel"> | ||
<div class="carousel-inner"> | ||
<div class="carousel-item active"> | ||
<img src={process.env.PUBLIC_URL + "images/carousel_img1.jpg"} class="d-block w-100" alt="..." /> | ||
</div> | ||
<div class="carousel-item"> | ||
<img src={process.env.PUBLIC_URL + '/images/ci_img2.jpg'} class="d-block w-100" alt="..." /> | ||
</div> | ||
<div class="carousel-item"> | ||
<img src={process.env.PUBLIC_URL + '/images/ci_img3.jpg'} class="d-block w-100" alt="..." /> | ||
</div> | ||
</div> | ||
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev"> | ||
<span class="carousel-control-prev-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Previous</span> | ||
</button> | ||
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next"> | ||
<span class="carousel-control-next-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Next</span> | ||
</button> | ||
</div> | ||
|
||
|
||
</> | ||
|
||
|
||
|
||
) | ||
} | ||
|
||
// <div className=''> | ||
// <img className='carouselImg' src={ImgSrc} alt="carousel img" /> | ||
// </div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,41 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
import RowImg from './RowImg'; | ||
|
||
export default function RowContainer() { | ||
|
||
export default function RowContainer(props) { | ||
|
||
return ( | ||
<div>RowContainer</div> | ||
<div className="row-container container mt-3"> | ||
<h3 className='p-2'>{props.heading}</h3> | ||
|
||
<div className='d-flex overflow-auto'> | ||
{props.imgUrls.map((ele) => | ||
<RowImg src={ele} alt="" />)} | ||
{/* <RowImg src={process.env.PUBLIC_URL + '/images/books/book1.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book3.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book4.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book5.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book6.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book7.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book8.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book9.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book10.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book1.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book3.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book4.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book5.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book6.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book7.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book8.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book9.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book10.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" /> | ||
<RowImg src={process.env.PUBLIC_URL + '/images/books/book3.jpg'} alt="" /> */} | ||
</div> | ||
</div> | ||
|
||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
export default function RowImg(props) { | ||
return ( | ||
<div className="row-img m-1 p-2"> | ||
<img src={props.src} alt={props.alt} /> | ||
</div> | ||
) | ||
} |