Dashboard

Default Header
  • We use many different type of Header in our project.
  • To Get The Defalut Header file Navigate to ../src/component/partial/pro/headerstyle/header-pro.tsx this path.
  • To Get remaing header file Navigate to ../src/components/partials/dashboard/headerstyle this path.
  • The default header is set by the design and implemented using the following code:

import Headerpro from "../../components/partials/pro/headerstyle/header-pro";

const Default = () => {
  return (
    <Fragment>
        <div >
            <Headerpro />
        </div>
    </Fragment>
  )
}

Landing Page

Header
  • We use many different type of Header in our project.
  • To Get all header file Navigate to ../src/components/landing-modules/partials/header this path.
  • The default header is set by the design and implemented using the following code:
import Header1 from '@/components/landing-modules/partials/header/header-1';
            
const Default = () => {
return (
    <Fragment>
        <div >
            <Header1 />
        </div>
    </Fragment>
)
}