If you have any questions that are beyond the scope of this documentation, please feel free to email or contact us via my page.

Vakavia is a Responsive Bootstrap 5 landing page template built with React js. This responsive template comes with 6 Demo variations which can be used to build your product, service, marketing, app and SaaS landing pages. It’s fully responsive and built with bootstrap v5.3.2. You will be easily able to customize it for your needs.

Please feel free to get back to me in case if you are having any question or feedback.

I have tried to follow the standards and modular structure while developing the theme. Following sections are explaining the theme File & Folder, structure, html file struture and plugins.

File & Folder Structure


├── public
├── src
│   ├── assets
│   ├── components
│   ├── pages
│   ├── App.js
│   ├── App.test.js
│   ├── index.css
│   ├── index.js
│   ├── routes.js
│   ├── serviceWorker.js
│   ├── setupTests.js
│   └── theme.scss
├── package.json
└── package-lock.json

App.js Structure


import React, { Component } from "react";
import routes from "./routes";
import {
  withRouter,
  Route,
  Switch,
  BrowserRouter as Router
} from "react-router-dom";

// Import Bootstrap css
import "./theme.scss";

// Import themify Icon
import "./assets/css/themify-icons.css";

// Import Custom Css
import "./assets/css/style.css";

class App extends Component {
  constructor(props){
    super(props);
    this.state = {};
  }
    render() {
        return (
          <React.Fragment>
          <Router>
            <Switch>
              {routes.map((route, idx) => (
                <Route path={route.path} component={route.component} key={idx} />
              ))}
            </Switch>
          </Router>
        </React.Fragment>
      );
    }
  }
  
  export default withRouter(App);
													

We've used the following resources as listed. These are some awesome creation and we are thankful to the community.

Once again thank you for your purchase. I'll be happy to answer the the questions you have related to the theme. In case if you have any suggestion or feature, request please feel free to contact me, I'll try to implement it and will release as part of future updates.

Stay Awesome!

- Themesdesign

Version 2.1.0     27 Dec 2023

  • Update latest Bootstrap v5.3.2
  • Update Node version to v20.10.0
  • Updated react-router-dom version to v6.21.1.
  • Updated all dependencies package.
  • Fixed minor issue.

Version 1.0.0     20 August 2020

  • Initial released

Copyright © 2023 Themesdesign.