Skip to main content

Customization

For customizing the template's default site settings

  • To customize tailwind configuration go to -> tailwind.config.js file.
  • /public: To change your app favicon images here.
  • /src/assets: We managed our css & images in this directory.
  • /src/components: This folder contains all the app related components.
    • drawer-views: We managed all of our side Drawer's view, context api & drawer UI in this folder.
    • modal-views: We managed all of our modal's view, context api & modal UI in this folder.
    • icons: Our app's custom svg icons components directory, if you need any then add your custom svg icon components here.
    • ui: This folder contains common reusable ui components.
  • /src/config: This folder contains all necessary configuration related for this app.
  • /src/data: It's contain all of our app's static data.
  • /src/layout: It's contain all layouts and layout's related components like header, sidebar, container and etc.
  • /src/lib : This folder contains constants, hooks, framer motion & general utils functions.
  • /src/app: All the pages created inside app directory page.tsx files which is used by nextjs app routing mechanism.
  • /src/types: Reusable function & component's types are located in this folder.