-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from DushanSenadheera/dev
add results section
- Loading branch information
Showing
5 changed files
with
87 additions
and
65 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.Carousel { | ||
/* Add your styles here */ | ||
} |
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,19 @@ | ||
import { Carousel } from "@mantine/carousel"; | ||
import bg from "../../assets/bg.png"; | ||
import bg2 from "../../assets/bg2.png"; | ||
|
||
export default function CarouselContent() { | ||
return ( | ||
<Carousel withIndicators height={400}> | ||
<Carousel.Slide> | ||
<img src={bg} alt="bg" /> | ||
</Carousel.Slide> | ||
<Carousel.Slide> | ||
<img src={bg2} alt="bg" /> | ||
</Carousel.Slide> | ||
<Carousel.Slide> | ||
<img src={bg} alt="bg" /> | ||
</Carousel.Slide> | ||
</Carousel> | ||
); | ||
} |
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