Skip to content

Commit

Permalink
feat(ui): add welcome message
Browse files Browse the repository at this point in the history
  • Loading branch information
Valik3201 committed Jan 26, 2024
1 parent 1241567 commit dae85f1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/components/ImagePortalWelcome.jsx
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;

0 comments on commit dae85f1

Please sign in to comment.