generated from goitacademy/react-homework-template
-
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.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { Container, Row, Col, Alert } from 'react-bootstrap'; | ||
|
||
function ImagePortalWelcome() { | ||
return ( | ||
<Container> | ||
<Row className="d-flex align-items-center justify-content-center vh-100"> | ||
<Col xs={12} md={6}> | ||
<Alert variant="success"> | ||
<Alert.Heading>Hey, nice to see you!</Alert.Heading> | ||
<p> | ||
Explore over 4.3 million+ high-quality stock images, videos, and | ||
music shared by our talented community. This site is powered by | ||
the Pixabay API, providing you with a vast collection of visuals | ||
for your creative projects. | ||
</p> | ||
<hr /> | ||
<p className="mb-0"> | ||
Simply enter your search query, and voilà! Discover a world of | ||
captivating visuals at your fingertips. | ||
</p> | ||
</Alert> | ||
</Col> | ||
</Row> | ||
</Container> | ||
); | ||
} | ||
|
||
export default ImagePortalWelcome; |