UNPKG

@themesberg/volt-react-dashboard

Version:

Volt React Dashboard is a free and open source admin dashboard template powered by React.js and Bootstrap 5

26 lines (22 loc) 819 B
import React from 'react'; import { Row, Col, Card, Container } from '@themesberg/react-bootstrap'; export default () => ( <Container className="px-0"> <Row> <Col xs={12} className="p-3"> <Card> <Card.Body> <article> <h1 className="h2" id="download">Download </h1> <p className="fs-5 fw-light">Download files for Volt React Dashboard</p> <p>Use the following links to download Volt React Dashboard files:</p> <ul className="docs-list"> <li>Download <Card.Link href="https://themesberg.com/product/dashboard/volt-pro-react" target="_blank">Volt React Dashboard</Card.Link>.</li> </ul> </article> </Card.Body> </Card> </Col> </Row> </Container> );