Compare commits
No commits in common. "47d0e332f1ea8b99eda56b9d03ea61fc2b8d24fb" and "849709ad05b1074299886a9a5d94b6e146797858" have entirely different histories.
47d0e332f1
...
849709ad05
@ -1 +0,0 @@
|
|||||||
<svg idth="64" height="64" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M0 142.1L0 480c0 17.7 14.3 32 32 32s32-14.3 32-32l0-240c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32l0 240c0 17.7 14.3 32 32 32s32-14.3 32-32l0-337.9c0-27.5-17.6-52-43.8-60.7L303.2 5.1c-9.9-3.3-20.5-3.3-30.4 0L43.8 81.4C17.6 90.1 0 114.6 0 142.1zM464 256l-352 0 0 64 352 0 0-64zM112 416l352 0 0-64-352 0 0 64zm352 32l-352 0 0 64 352 0 0-64z"/></svg>
|
|
Before Width: | Height: | Size: 500 B |
@ -1,10 +1,6 @@
|
|||||||
.section-py {
|
.section-py {
|
||||||
padding: 6.25rem 0;
|
padding: 6.25rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-py .heading {
|
|
||||||
font-size: 1.625rem;
|
|
||||||
}
|
|
||||||
@media (max-width: 1199.98px) {
|
@media (max-width: 1199.98px) {
|
||||||
.section-py {
|
.section-py {
|
||||||
padding: 4rem 0;
|
padding: 4rem 0;
|
||||||
@ -307,10 +303,10 @@ nav.layout-navbar.navbar-active::after {
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.landing-footer .footer-top {
|
.landing-footer .footer-top {
|
||||||
padding-top: 1.3rem;
|
padding-top: 3.3rem;
|
||||||
padding-bottom: 1.3rem;
|
padding-bottom: 2.3rem;
|
||||||
border-top-left-radius: 1.75rem;
|
border-top-left-radius: 3.75rem;
|
||||||
border-top-right-radius: 1.75rem;
|
border-top-right-radius: 3.75rem;
|
||||||
}
|
}
|
||||||
@media (max-width: 767.98px) {
|
@media (max-width: 767.98px) {
|
||||||
.landing-footer .footer-top {
|
.landing-footer .footer-top {
|
||||||
@ -359,7 +355,7 @@ nav.layout-navbar.navbar-active::after {
|
|||||||
|
|
||||||
.landing-hero {
|
.landing-hero {
|
||||||
border-radius: 0 0 3.5rem 3.5rem;
|
border-radius: 0 0 3.5rem 3.5rem;
|
||||||
padding-top: 8.2rem;
|
padding-top: 10.2rem;
|
||||||
}
|
}
|
||||||
.landing-hero::after {
|
.landing-hero::after {
|
||||||
content: "";
|
content: "";
|
||||||
@ -372,8 +368,7 @@ nav.layout-navbar.navbar-active::after {
|
|||||||
}
|
}
|
||||||
@media (min-width: 992px) {
|
@media (min-width: 992px) {
|
||||||
.landing-hero .hero-text-box {
|
.landing-hero .hero-text-box {
|
||||||
/* max-width: 34.375rem; */
|
max-width: 34.375rem;
|
||||||
max-width: 70%;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -633,12 +628,12 @@ nav.layout-navbar.navbar-active::after {
|
|||||||
.swiper {
|
.swiper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border-radius: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.swiper-slide {
|
.swiper-slide {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
background: #444;
|
||||||
|
|
||||||
/* Center slide text vertically */
|
/* Center slide text vertically */
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -1,20 +1,15 @@
|
|||||||
import { noop } from "@tanstack/react-query";
|
import { noop } from "@tanstack/react-query";
|
||||||
import React, { useEffect, useMemo, useState } from "react";
|
|
||||||
|
|
||||||
import "./LandingPage.css";
|
import "./LandingPage.css";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
|
|
||||||
import { Swiper, SwiperSlide } from "swiper/react";
|
import { Swiper, SwiperSlide } from "swiper/react";
|
||||||
// import required modules
|
// import required modules
|
||||||
import { EffectFlip, Autoplay, Pagination, Navigation } from "swiper/modules";
|
import { Autoplay, Pagination, Navigation } from "swiper/modules";
|
||||||
// Import Swiper styles
|
// Import Swiper styles
|
||||||
import "swiper/css";
|
import "swiper/css";
|
||||||
import "swiper/css/navigation";
|
import "swiper/css/navigation";
|
||||||
import SwaperSlideContent from "./SwaperSlideContent";
|
|
||||||
import SwaperBlogContent from "./SwaperBlogContent";
|
|
||||||
|
|
||||||
const LandingPage = () => {
|
const LandingPage = () => {
|
||||||
const [swiperRef, setSwiperRef] = useState(null);
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<nav className="layout-navbar shadow-none py-0">
|
<nav className="layout-navbar shadow-none py-0">
|
||||||
@ -82,8 +77,8 @@ const LandingPage = () => {
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a className="nav-link fw-medium" href="#landingPricing">
|
<a className="nav-link fw-medium" href="#landingTeam">
|
||||||
Pricing
|
Team
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
@ -92,7 +87,11 @@ const LandingPage = () => {
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a className="nav-link fw-medium" href="#landingReviews">
|
<a
|
||||||
|
className="nav-link fw-medium"
|
||||||
|
href="../vertical-menu-template/index.html"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
Blogs
|
Blogs
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@ -132,14 +131,13 @@ const LandingPage = () => {
|
|||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="hero-text-box text-center position-relative">
|
<div className="hero-text-box text-center position-relative">
|
||||||
<h1 className="text-primary hero-title display-6 fw-extrabold">
|
<h1 className="text-primary hero-title display-6 fw-extrabold">
|
||||||
All-in-one platform to manage projects, people, and resources
|
One dashboard to manage all your businesses
|
||||||
seamlessly.
|
|
||||||
</h1>
|
</h1>
|
||||||
{/* <h2 className="hero-sub-title h6 mb-6">
|
<h2 className="hero-sub-title h6 mb-6">
|
||||||
Production-ready & easy to use Admin Template
|
Production-ready & easy to use Admin Template
|
||||||
<br className="d-none d-lg-block" />
|
<br className="d-none d-lg-block" />
|
||||||
for Reliability and Customizability.
|
for Reliability and Customizability.
|
||||||
</h2> */}
|
</h2>
|
||||||
<div className="landing-hero-btn d-inline-block position-relative">
|
<div className="landing-hero-btn d-inline-block position-relative">
|
||||||
{/* <span className="hero-btn-item position-absolute d-none d-md-flex fw-medium">
|
{/* <span className="hero-btn-item position-absolute d-none d-md-flex fw-medium">
|
||||||
Join community
|
Join community
|
||||||
@ -153,7 +151,7 @@ const LandingPage = () => {
|
|||||||
href="#landingPricing"
|
href="#landingPricing"
|
||||||
className="btn btn-primary btn-lg me-5"
|
className="btn btn-primary btn-lg me-5"
|
||||||
>
|
>
|
||||||
Get Early Access
|
Get early access
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="/auth/reqest/demo"
|
href="/auth/reqest/demo"
|
||||||
@ -163,10 +161,13 @@ const LandingPage = () => {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
id="heroDashboardAnimation"
|
id="heroDashboardAnimation"
|
||||||
className="hero-animation-img mt-10"
|
className="hero-animation-img mt-10"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href="../vertical-menu-template/app-ecommerce-dashboard.html"
|
||||||
|
target="_blank"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
id="heroAnimationImg"
|
id="heroAnimationImg"
|
||||||
@ -187,64 +188,94 @@ const LandingPage = () => {
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
}}
|
}}
|
||||||
navigation={false}
|
navigation={false}
|
||||||
modules={[EffectFlip, Autoplay, Pagination, Navigation]}
|
modules={[Autoplay, Pagination, Navigation]}
|
||||||
className="mySwiper"
|
className="mySwiper"
|
||||||
onSlideChange={() => console.log("slide change")}
|
onSlideChange={() => console.log("slide change")}
|
||||||
onSwiper={(swiper) => console.log(swiper)}
|
onSwiper={(swiper) => console.log(swiper)}
|
||||||
>
|
>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<SwaperSlideContent
|
<img
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-01.png"
|
src="./../../public/img/front-pages/landing-page/dashboard-light-01.png"
|
||||||
Title="Project & Task Management"
|
alt="hero dashboard"
|
||||||
Body="Plan, assign, and track projects and tasks seamlessly for better team collaboration."
|
className="animation-img"
|
||||||
></SwaperSlideContent>
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
</SwiperSlide>
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
<SwiperSlide>
|
|
||||||
<SwaperSlideContent
|
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-02.png"
|
|
||||||
Title="Attendance & Leave Tracking"
|
|
||||||
Body="Monitor employee attendance and manage leave requests with ease."
|
|
||||||
></SwaperSlideContent>
|
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<SwaperSlideContent
|
<img
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-04.png"
|
src="./../../public/img/front-pages/landing-page/dashboard-light-02.png"
|
||||||
Title="Role-based Permissions"
|
alt="hero dashboard"
|
||||||
Body="Securely control access with customizable roles and permissions."
|
className="animation-img"
|
||||||
></SwaperSlideContent>
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<SwaperSlideContent
|
<img
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-05.png"
|
src="./../../public/img/front-pages/landing-page/dashboard-light-03.png"
|
||||||
Title="Expense & Budget Tracking"
|
alt="hero dashboard"
|
||||||
Body="Keep projects on budget with real-time expense and cost management."
|
className="animation-img"
|
||||||
ContentAlign="left"
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
></SwaperSlideContent>
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<SwaperSlideContent
|
<img
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-06.png"
|
src="./../../public/img/front-pages/landing-page/dashboard-light-04.png"
|
||||||
Title="Reporting & Analytics"
|
alt="hero dashboard"
|
||||||
Body="Gain actionable insights through powerful reports and analytics dashboards."
|
className="animation-img"
|
||||||
></SwaperSlideContent>
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<SwaperSlideContent
|
<img
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-07.png"
|
src="./../../public/img/front-pages/landing-page/dashboard-light-05.png"
|
||||||
Title="Document Management"
|
alt="hero dashboard"
|
||||||
Body="Organize, share, and access all your project and employee documents in one place."
|
className="animation-img"
|
||||||
></SwaperSlideContent>
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
<SwiperSlide>
|
<SwiperSlide>
|
||||||
<SwaperSlideContent
|
<img
|
||||||
ImageUrl="./../../public/img/front-pages/landing-page/dashboard-light-08.png"
|
src="./../../public/img/front-pages/landing-page/dashboard-light-06.png"
|
||||||
Title="Inventory Management"
|
alt="hero dashboard"
|
||||||
Body="Track materials, supplies, and assets — never run short again."
|
className="animation-img"
|
||||||
></SwaperSlideContent>
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<img
|
||||||
|
src="./../../public/img/front-pages/landing-page/dashboard-light-07.png"
|
||||||
|
alt="hero dashboard"
|
||||||
|
className="animation-img"
|
||||||
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<img
|
||||||
|
src="./../../public/img/front-pages/landing-page/dashboard-light-08.png"
|
||||||
|
alt="hero dashboard"
|
||||||
|
className="animation-img"
|
||||||
|
data-app-light-img="front-pages/landing-page/hero-dashboard-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-dashboard-dark.png"
|
||||||
|
/>
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
</Swiper>
|
</Swiper>
|
||||||
|
|
||||||
|
{/* <img
|
||||||
|
src="./../../public/img/front-pages/landing-page/hero-elements-light.png"
|
||||||
|
alt="hero elements"
|
||||||
|
className="position-absolute hero-elements-img animation-img top-0 start-0"
|
||||||
|
data-app-light-img="front-pages/landing-page/hero-elements-light.png"
|
||||||
|
data-app-dark-img="front-pages/landing-page/hero-elements-dark.png"
|
||||||
|
/> */}
|
||||||
</div>
|
</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -256,229 +287,192 @@ const LandingPage = () => {
|
|||||||
<section id="landingFeatures" className="section-py landing-features">
|
<section id="landingFeatures" className="section-py landing-features">
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<span className="badge bg-label-primary heading">
|
<span className="badge bg-label-primary">Useful Features</span>
|
||||||
Useful Features
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="text-center mb-1">
|
<h4 className="text-center mb-1">
|
||||||
<span className="position-relative fw-extrabold z-1">
|
<span className="position-relative fw-extrabold z-1">
|
||||||
From tasks to teams, documents to inventory —
|
Everything you need
|
||||||
{/* <img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/section-title-icon.png"
|
src="./../../public/img/front-pages/icons/section-title-icon.png"
|
||||||
alt="laptop charging"
|
alt="laptop charging"
|
||||||
className="section-title-img position-absolute object-fit-contain bottom-0 z-n1"
|
className="section-title-img position-absolute object-fit-contain bottom-0 z-n1"
|
||||||
/> */}
|
/>
|
||||||
</span>
|
</span>
|
||||||
everything your business needs in one place.
|
to start your next project
|
||||||
</h4>
|
</h4>
|
||||||
<p className="text-center mb-12">
|
<p className="text-center mb-12">
|
||||||
All-in-one platform to manage projects, people, and resources
|
Not just a set of tools, the package includes ready-to-deploy
|
||||||
seamlessly.
|
conceptual application.
|
||||||
</p>
|
</p>
|
||||||
<div className="features-icon-wrapper row gx-0 gy-6 g-sm-12">
|
<div className="features-icon-wrapper row gx-0 gy-6 g-sm-12">
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
<div className="col-lg-4 col-sm-6 text-center features-icon-box">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/laptop.svg"
|
src="./../../public/img/front-pages/icons/laptop.svg"
|
||||||
alt="laptop charging"
|
alt="laptop charging"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">Project & Task Management</h5>
|
<h5 className="mb-2">Quality Code</h5>
|
||||||
<p className="features-icon-description">
|
<p className="features-icon-description">
|
||||||
Plan, assign, and track projects and tasks seamlessly for
|
Code structure that all developers will easily understand and
|
||||||
better team collaboration.
|
fall in love with.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
<div className="col-lg-4 col-sm-6 text-center features-icon-box">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/rocket.svg"
|
src="./../../public/img/front-pages/icons/rocket.svg"
|
||||||
alt="transition up"
|
alt="transition up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">Attendance & Leave Tracking</h5>
|
<h5 className="mb-2">Continuous Updates</h5>
|
||||||
<p className="features-icon-description">
|
<p className="features-icon-description">
|
||||||
Monitor employee attendance and manage leave requests with
|
Free updates for the next 12 months, including new demos and
|
||||||
ease.
|
features.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
<div className="col-lg-4 col-sm-6 text-center features-icon-box">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/paper.svg"
|
src="./../../public/img/front-pages/icons/paper.svg"
|
||||||
alt="edit"
|
alt="edit"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">Role-based Permissions</h5>
|
<h5 className="mb-2">Stater-Kit</h5>
|
||||||
<p className="features-icon-description">
|
<p className="features-icon-description">
|
||||||
Securely control access with customizable roles and
|
Start your project quickly without having to remove
|
||||||
permissions.
|
unnecessary features.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
<div className="col-lg-4 col-sm-6 text-center features-icon-box">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/check.svg"
|
src="./../../public/img/front-pages/icons/check.svg"
|
||||||
alt="3d select solid"
|
alt="3d select solid"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">Expense & Budget Tracking</h5>
|
<h5 className="mb-2">API Ready</h5>
|
||||||
<p className="features-icon-description">
|
<p className="features-icon-description">
|
||||||
Keep projects on budget with real-time expense and cost
|
Just change the endpoint and see your own data loaded within
|
||||||
management.
|
seconds.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
<div className="col-lg-4 col-sm-6 text-center features-icon-box">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/user.svg"
|
src="./../../public/img/front-pages/icons/user.svg"
|
||||||
alt="user"
|
alt="user"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">Reporting & Analytics</h5>
|
<h5 className="mb-2">Excellent Support</h5>
|
||||||
<p className="features-icon-description">
|
<p className="features-icon-description">
|
||||||
Gain actionable insights through powerful reports and
|
An easy-to-follow doc with lots of references and code
|
||||||
analytics dashboards.
|
examples.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
<div className="col-lg-4 col-sm-6 text-center features-icon-box">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/keyboard.svg"
|
src="./../../public/img/front-pages/icons/keyboard.svg"
|
||||||
alt="keyboard"
|
alt="keyboard"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">Document Management</h5>
|
<h5 className="mb-2">Well Documented</h5>
|
||||||
<p className="features-icon-description">
|
<p className="features-icon-description">
|
||||||
Organize, share, and access all your project and employee
|
An easy-to-follow doc with lots of references and code
|
||||||
documents in one place.
|
examples.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
|
||||||
<div className="text-center mb-4">
|
|
||||||
<img
|
|
||||||
src="./../../public/img/front-pages/icons/keyboard.svg"
|
|
||||||
alt="keyboard"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<h5 className="mb-2">
|
|
||||||
Service Provider & Subcontractor Tracking
|
|
||||||
</h5>
|
|
||||||
<p className="features-icon-description">
|
|
||||||
Manage multiple service providers and subcontractors
|
|
||||||
efficiently within projects.
|
|
||||||
</p>
|
|
||||||
</div>{" "}
|
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
|
||||||
<div className="text-center mb-4">
|
|
||||||
<img
|
|
||||||
src="./../../public/img/front-pages/icons/inventory.svg"
|
|
||||||
alt="keyboard"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<h5 className="mb-2">Inventory Management</h5>
|
|
||||||
<p className="features-icon-description">
|
|
||||||
Track materials, supplies, and assets — never run short again.
|
|
||||||
</p>
|
|
||||||
</div>{" "}
|
|
||||||
</div>
|
|
||||||
<div className="col-lg-3 col-sm-4 text-center features-icon-box">
|
|
||||||
<div className="text-center mb-4">
|
|
||||||
<img
|
|
||||||
src="./../../public/img/front-pages/icons/keyboard.svg"
|
|
||||||
alt="keyboard"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<h5 className="mb-2">Directory</h5>
|
|
||||||
<p className="features-icon-description">
|
|
||||||
Your team, suppliers, vendors organized and connected in one
|
|
||||||
unified directory.
|
|
||||||
</p>
|
|
||||||
</div>{" "}
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{/* Useful features: End */}
|
{/* Useful features: End */}
|
||||||
|
|
||||||
{/* <!-- Real customers reviews: Start --> */}
|
{/* Our great team: Start */}
|
||||||
<section
|
<section id="landingTeam" className="section-py landing-team">
|
||||||
id="landingReviews"
|
<div className="container">
|
||||||
class="section-py bg-body landing-reviews pb-0"
|
|
||||||
>
|
|
||||||
{/* <!-- What people say slider: Start --> */}
|
|
||||||
<div class="container">
|
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<span className="badge bg-label-primary heading">
|
<span className="badge bg-label-primary">Our Great Team</span>
|
||||||
Case Studies
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="text-center mb-1">
|
<h4 className="text-center mb-1">
|
||||||
<span className="position-relative fw-extrabold z-1 me-2">
|
<span className="position-relative fw-extrabold z-1">
|
||||||
Proven results, showcased
|
Supported
|
||||||
|
<img
|
||||||
|
src="./../../public/img/front-pages/icons/section-title-icon.png"
|
||||||
|
alt="laptop charging"
|
||||||
|
className="section-title-img position-absolute object-fit-contain bottom-0 z-n1"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
through client success stories
|
by Real People
|
||||||
</h4>
|
</h4>
|
||||||
<p className="text-center pb-2 mb-7">
|
<p className="text-center mb-md-11 pb-0 pb-xl-12">
|
||||||
Every business has unique goals, and our case studies highlight
|
Who is behind these great-looking interfaces?
|
||||||
<strong>
|
|
||||||
{" "}
|
|
||||||
how we tailor solutions to deliver real impact.
|
|
||||||
</strong>{" "}
|
|
||||||
<br></br>
|
|
||||||
See the transformations our clients have achieved with us
|
|
||||||
</p>
|
</p>
|
||||||
|
<div className="row gy-12 mt-2">
|
||||||
<div class="row">
|
<div className="col-lg-3 col-sm-6">
|
||||||
<div class="swiper-reviews-carousel">
|
<div className="card mt-3 mt-lg-0 shadow-none">
|
||||||
<Swiper
|
<div className="bg-label-primary border border-bottom-0 border-label-primary position-relative team-image-box">
|
||||||
onSwiper={setSwiperRef}
|
<img
|
||||||
slidesPerView={4}
|
src="./../../public/img/front-pages/landing-page/team-member-1.png"
|
||||||
centeredSlides={true}
|
className="position-absolute card-img-position bottom-0 start-50 scaleX-n1-rtl"
|
||||||
spaceBetween={30}
|
alt="human image"
|
||||||
pagination={{
|
/>
|
||||||
type: "fraction",
|
</div>
|
||||||
}}
|
<div className="card-body border border-top-0 border-label-primary text-center py-5">
|
||||||
navigation={true}
|
<h5 className="card-title mb-0">Sophie Gilbert</h5>
|
||||||
modules={[Autoplay, Pagination, Navigation]}
|
<p className="text-muted mb-0">Project Manager</p>
|
||||||
className="mySwiper"
|
</div>
|
||||||
>
|
</div>
|
||||||
<SwiperSlide>
|
</div>
|
||||||
{" "}
|
<div className="col-lg-3 col-sm-6">
|
||||||
<SwaperBlogContent
|
<div className="card mt-3 mt-lg-0 shadow-none">
|
||||||
ImageUrl="./../../img/front-pages/branding/logo-1.png"
|
<div className="bg-label-info border border-bottom-0 border-label-info position-relative team-image-box">
|
||||||
Title="Project & Task Management"
|
<img
|
||||||
Body="Plan, assign, and track projects and tasks seamlessly for better team collaboration."
|
src="./../../public/img/front-pages/landing-page/team-member-2.png"
|
||||||
></SwaperBlogContent>
|
className="position-absolute card-img-position bottom-0 start-50 scaleX-n1-rtl"
|
||||||
</SwiperSlide>
|
alt="human image"
|
||||||
<SwiperSlide>
|
/>
|
||||||
{" "}
|
</div>
|
||||||
<SwaperBlogContent
|
<div className="card-body border border-top-0 border-label-info text-center py-5">
|
||||||
ImageUrl="./../../img/front-pages/branding/logo-1.png"
|
<h5 className="card-title mb-0">Paul Miles</h5>
|
||||||
Title="Project & Task Management"
|
<p className="text-muted mb-0">UI Designer</p>
|
||||||
Body="Plan, assign, and track projects and tasks seamlessly for better team collaboration."
|
</div>
|
||||||
></SwaperBlogContent>
|
</div>
|
||||||
</SwiperSlide>
|
</div>
|
||||||
<SwiperSlide>
|
<div className="col-lg-3 col-sm-6">
|
||||||
{" "}
|
<div className="card mt-3 mt-lg-0 shadow-none">
|
||||||
<SwaperBlogContent
|
<div className="bg-label-danger border border-bottom-0 border-label-danger position-relative team-image-box">
|
||||||
ImageUrl="./../../img/front-pages/branding/logo-1.png"
|
<img
|
||||||
Title="Project & Task Management"
|
src="./../../public/img/front-pages/landing-page/team-member-3.png"
|
||||||
Body="Plan, assign, and track projects and tasks seamlessly for better team collaboration."
|
className="position-absolute card-img-position bottom-0 start-50 scaleX-n1-rtl"
|
||||||
></SwaperBlogContent>
|
alt="human image"
|
||||||
</SwiperSlide>
|
/>
|
||||||
<SwiperSlide>
|
</div>
|
||||||
{" "}
|
<div className="card-body border border-top-0 border-label-danger text-center py-5">
|
||||||
<SwaperBlogContent
|
<h5 className="card-title mb-0">Nannie Ford</h5>
|
||||||
ImageUrl="./../../img/front-pages/branding/logo-1.png"
|
<p className="text-muted mb-0">Development Lead</p>
|
||||||
Title="Project & Task Management"
|
</div>
|
||||||
Body="Plan, assign, and track projects and tasks seamlessly for better team collaboration."
|
</div>
|
||||||
></SwaperBlogContent>
|
</div>
|
||||||
</SwiperSlide>
|
<div className="col-lg-3 col-sm-6">
|
||||||
</Swiper>
|
<div className="card mt-3 mt-lg-0 shadow-none">
|
||||||
|
<div className="bg-label-success border border-bottom-0 border-label-success position-relative team-image-box">
|
||||||
|
<img
|
||||||
|
src="./../../public/img/front-pages/landing-page/team-member-4.png"
|
||||||
|
className="position-absolute card-img-position bottom-0 start-50 scaleX-n1-rtl"
|
||||||
|
alt="human image"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="card-body border border-top-0 border-label-success text-center py-5">
|
||||||
|
<h5 className="card-title mb-0">Chris Watkins</h5>
|
||||||
|
<p className="text-muted mb-0">Marketing Manager</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{/* <!-- Real customers reviews: End --> */}
|
{/* Our great team: End */}
|
||||||
|
|
||||||
{/* Pricing plans: Start */}
|
{/* Pricing plans: Start */}
|
||||||
<section
|
<section
|
||||||
@ -487,39 +481,28 @@ const LandingPage = () => {
|
|||||||
>
|
>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<span className="badge bg-label-primary heading">
|
<span className="badge bg-label-primary">Pricing Plans</span>
|
||||||
Pricing Plans
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="text-center mb-1">
|
<h4 className="text-center mb-1">
|
||||||
<span className="position-relative fw-extrabold z-1 me-2">
|
<span className="position-relative fw-extrabold z-1 me-2">
|
||||||
Tailored pricing plans
|
Tailored pricing plans
|
||||||
{/* <img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/section-title-icon.png"
|
src="./../../public/img/front-pages/icons/section-title-icon.png"
|
||||||
alt="laptop charging"
|
alt="laptop charging"
|
||||||
className="section-title-img position-absolute object-fit-contain bottom-0 z-n1"
|
className="section-title-img position-absolute object-fit-contain bottom-0 z-n1"
|
||||||
/> */}
|
/>
|
||||||
</span>
|
</span>
|
||||||
designed for you
|
designed for you
|
||||||
</h4>
|
</h4>
|
||||||
<p className="text-center pb-2 mb-7">
|
<p className="text-center pb-2 mb-7">
|
||||||
No matter which plan you choose, you’ll get access to powerful
|
All plans include 40+ advanced tools and features to boost your
|
||||||
features. <strong>Choose the best plan to fit your needs.</strong>
|
product.
|
||||||
|
<br />
|
||||||
|
Choose the best plan to fit your needs.
|
||||||
</p>
|
</p>
|
||||||
<div className="text-center mb-8">
|
<div className="text-center mb-12">
|
||||||
<div className="position-relative d-inline-block pt-3 pt-md-0">
|
<div className="position-relative d-inline-block pt-3 pt-md-0">
|
||||||
<div class="btn-group" role="group" aria-label="Basic example">
|
<label className="switch switch-sm switch-primary me-0">
|
||||||
<button type="button" class="btn btn-outline-secondary">
|
|
||||||
Basic
|
|
||||||
</button>
|
|
||||||
<button type="button" class="btn btn-primary">
|
|
||||||
Team
|
|
||||||
</button>
|
|
||||||
<button type="button" class="btn btn-outline-secondary">
|
|
||||||
Enterprise
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
{/* <label className="switch switch-sm switch-primary me-0">
|
|
||||||
<span className="switch-label fs-6 text-body me-3">
|
<span className="switch-label fs-6 text-body me-3">
|
||||||
Pay Monthly
|
Pay Monthly
|
||||||
</span>
|
</span>
|
||||||
@ -535,18 +518,18 @@ const LandingPage = () => {
|
|||||||
<span className="switch-label fs-6 text-body ms-3">
|
<span className="switch-label fs-6 text-body ms-3">
|
||||||
Pay Annual
|
Pay Annual
|
||||||
</span>
|
</span>
|
||||||
</label> */}
|
</label>
|
||||||
{/* <div className="pricing-plans-item position-absolute d-flex">
|
<div className="pricing-plans-item position-absolute d-flex">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/icons/pricing-plans-arrow.png"
|
src="./../../public/img/front-pages/icons/pricing-plans-arrow.png"
|
||||||
alt="pricing plans arrow"
|
alt="pricing plans arrow"
|
||||||
className="scaleX-n1-rtl"
|
className="scaleX-n1-rtl"
|
||||||
/>
|
/>
|
||||||
<span className="fw-medium mt-2 ms-1"> Save 25%</span>
|
<span className="fw-medium mt-2 ms-1"> Save 25%</span>
|
||||||
</div> */}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="row g-6 pt-0">
|
</div>
|
||||||
|
<div className="row g-6 pt-lg-5">
|
||||||
{/* Basic Plan: Start */}
|
{/* Basic Plan: Start */}
|
||||||
<div className="col-xl-4 col-lg-6 col-md-4">
|
<div className="col-xl-4 col-lg-6 col-md-4">
|
||||||
<div className="card">
|
<div className="card">
|
||||||
@ -930,7 +913,7 @@ const LandingPage = () => {
|
|||||||
<section id="landingFAQ" className="section-py bg-body landing-faq">
|
<section id="landingFAQ" className="section-py bg-body landing-faq">
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<span className="badge bg-label-primary heading">FAQ</span>
|
<span className="badge bg-label-primary">FAQ</span>
|
||||||
</div>
|
</div>
|
||||||
<h4 className="text-center mb-1">
|
<h4 className="text-center mb-1">
|
||||||
Frequently asked
|
Frequently asked
|
||||||
@ -969,7 +952,7 @@ const LandingPage = () => {
|
|||||||
aria-expanded="true"
|
aria-expanded="true"
|
||||||
aria-controls="accordionOne"
|
aria-controls="accordionOne"
|
||||||
>
|
>
|
||||||
What is MarcoPMS?
|
Do you charge for each upgrade?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@ -997,7 +980,7 @@ const LandingPage = () => {
|
|||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-controls="accordionTwo"
|
aria-controls="accordionTwo"
|
||||||
>
|
>
|
||||||
Can I switch or cancel my plan?
|
Do I need to purchase a license for each website?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div
|
<div
|
||||||
@ -1025,7 +1008,7 @@ const LandingPage = () => {
|
|||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-controls="accordionThree"
|
aria-controls="accordionThree"
|
||||||
>
|
>
|
||||||
How secure is Marco PMS?
|
What is regular license?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div
|
<div
|
||||||
@ -1058,7 +1041,7 @@ const LandingPage = () => {
|
|||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-controls="accordionFour"
|
aria-controls="accordionFour"
|
||||||
>
|
>
|
||||||
Where can i get help if I have more questions?
|
What is extended license?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div
|
<div
|
||||||
@ -1112,7 +1095,10 @@ const LandingPage = () => {
|
|||||||
{/* FAQ: End */}
|
{/* FAQ: End */}
|
||||||
|
|
||||||
{/* CTA: Start */}
|
{/* CTA: Start */}
|
||||||
<section id="landingCTA" className="section-py landing-cta ">
|
<section
|
||||||
|
id="landingCTA"
|
||||||
|
className="section-py landing-cta position-relative p-lg-0 pb-0"
|
||||||
|
>
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/backgrounds/cta-bg-light.png"
|
src="./../../public/img/front-pages/backgrounds/cta-bg-light.png"
|
||||||
className="position-absolute bottom-0 end-0 scaleX-n1-rtl h-100 w-100 z-n1"
|
className="position-absolute bottom-0 end-0 scaleX-n1-rtl h-100 w-100 z-n1"
|
||||||
@ -1122,7 +1108,7 @@ const LandingPage = () => {
|
|||||||
/>
|
/>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="text-center mb-4 mt-5">
|
<div className="text-center mb-4 mt-5">
|
||||||
<span className="badge bg-label-primary heading">Contact US</span>
|
<span className="badge bg-label-primary">Contact US</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="row align-items-center gy-12 mb-12">
|
<div className="row align-items-center gy-12 mb-12">
|
||||||
@ -1223,7 +1209,7 @@ const LandingPage = () => {
|
|||||||
>
|
>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<span className="badge bg-label-primary heading">Contact US</span>
|
<span className="badge bg-label-primary">Contact US</span>
|
||||||
</div>
|
</div>
|
||||||
<h4 className="text-center mb-1">
|
<h4 className="text-center mb-1">
|
||||||
<span className="position-relative fw-extrabold z-1">
|
<span className="position-relative fw-extrabold z-1">
|
||||||
@ -1376,9 +1362,9 @@ const LandingPage = () => {
|
|||||||
className="footer-bg banner-bg-img z-n1"
|
className="footer-bg banner-bg-img z-n1"
|
||||||
/>
|
/>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="row ">
|
<div className="row gx-0 gy-6 g-lg-10">
|
||||||
<div className="col-lg-6">
|
<div className="col-lg-5">
|
||||||
<a href="#" className="app-brand-link ">
|
<a href="#" className="app-brand-link mb-6">
|
||||||
<span className="app-brand-logo demo">
|
<span className="app-brand-logo demo">
|
||||||
<svg
|
<svg
|
||||||
width="25"
|
width="25"
|
||||||
@ -1479,11 +1465,11 @@ const LandingPage = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<p className="footer-text footer-logo-description" hidden>
|
<p className="footer-text footer-logo-description mb-6">
|
||||||
Work smarter, track faster, and manage everything from one
|
Most developer friendly & highly customisable Admin Dashboard
|
||||||
platform.
|
Template.
|
||||||
</p>
|
</p>
|
||||||
<form className="footer-form" hidden>
|
<form className="footer-form">
|
||||||
<label for="footer-email" className="small">
|
<label for="footer-email" className="small">
|
||||||
Subscribe to newsletter
|
Subscribe to newsletter
|
||||||
</label>
|
</label>
|
||||||
@ -1503,16 +1489,51 @@ const LandingPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="col-lg-2 col-md-4 col-sm-6"></div>
|
||||||
<div className="col-lg-6 col-md-6 d-flex gap-3 align-items-center justify-content-end">
|
<div className="col-lg-2 col-md-4 col-sm-6">
|
||||||
<h6 className="footer-title">Download our app</h6>
|
<h6 className="footer-title mb-6">Pages</h6>
|
||||||
<a href="javascript:void(0);">
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-4">
|
||||||
|
<a href="pricing-page.html" className="footer-link">
|
||||||
|
Pricing
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li className="mb-4">
|
||||||
|
<a href="payment-page.html" className="footer-link">
|
||||||
|
Payment<span className="badge bg-primary ms-2">New</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li className="mb-4">
|
||||||
|
<a href="checkout-page.html" className="footer-link">
|
||||||
|
Checkout
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li className="mb-4">
|
||||||
|
<a href="help-center-landing.html" className="footer-link">
|
||||||
|
Help Center
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link className="footer-link" to="/auth/login">
|
||||||
|
Login/Register
|
||||||
|
</Link>
|
||||||
|
{/* <a
|
||||||
|
href="../vertical-menu-template/auth-login-cover.html"
|
||||||
|
target="_blank"
|
||||||
|
className="footer-link"
|
||||||
|
></a>*/}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-3 col-md-4">
|
||||||
|
<h6 className="footer-title mb-6">Download our app</h6>
|
||||||
|
<a href="javascript:void(0);" className="d-block mb-4">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/landing-page/apple-icon.png"
|
src="./../../public/img/front-pages/landing-page/apple-icon.png"
|
||||||
alt="apple icon"
|
alt="apple icon"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
<a href="javascript:void(0);">
|
<a href="javascript:void(0);" className="d-block">
|
||||||
<img
|
<img
|
||||||
src="./../../public/img/front-pages/landing-page/google-play-icon.png"
|
src="./../../public/img/front-pages/landing-page/google-play-icon.png"
|
||||||
alt="google play icon"
|
alt="google play icon"
|
||||||
|
@ -1,49 +0,0 @@
|
|||||||
const SwaperBlogContent = ({
|
|
||||||
ImageUrl = "",
|
|
||||||
Title = "",
|
|
||||||
Body = "",
|
|
||||||
ContentAlign = "right",
|
|
||||||
}) => {
|
|
||||||
return (
|
|
||||||
<div class="swiper-slide">
|
|
||||||
<div class="card h-100">
|
|
||||||
<div class="card-body text-body d-flex flex-column justify-content-between h-100">
|
|
||||||
<div class="mb-4">
|
|
||||||
<img
|
|
||||||
src={ImageUrl}
|
|
||||||
alt="client logo"
|
|
||||||
class="client-logo img-fluid"
|
|
||||||
/>
|
|
||||||
<h5>The Decoy Effect – Strategy</h5>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
“Vuexy is hands down the most useful front end Bootstrap theme I've
|
|
||||||
ever used. I can't wait to use it again for my next project.”
|
|
||||||
</p>
|
|
||||||
<div class="text-warning mb-4">
|
|
||||||
<i class="bx bxs-star"></i>
|
|
||||||
<i class="bx bxs-star"></i>
|
|
||||||
<i class="bx bxs-star"></i>
|
|
||||||
<i class="bx bxs-star"></i>
|
|
||||||
<i class="bx bxs-star"></i>
|
|
||||||
</div>
|
|
||||||
<div class="d-flex align-items-center">
|
|
||||||
<div class="avatar me-3 avatar-sm">
|
|
||||||
<img
|
|
||||||
src="../../assets/img/avatars/1.png"
|
|
||||||
alt="Avatar"
|
|
||||||
class="rounded-circle"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h6 class="mb-0">Cecilia Payne</h6>
|
|
||||||
<p class="small text-muted mb-0">CEO of Airbnb</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default SwaperBlogContent;
|
|
@ -1,59 +0,0 @@
|
|||||||
const SwaperSlideContent = ({
|
|
||||||
ImageUrl = "",
|
|
||||||
Title = "",
|
|
||||||
Body = "",
|
|
||||||
ContentAlign = "right",
|
|
||||||
}) => {
|
|
||||||
return (
|
|
||||||
<div className="container-fluid p-0">
|
|
||||||
<div
|
|
||||||
className="position-relative text-center text-white"
|
|
||||||
style={{
|
|
||||||
background: `url('${ImageUrl}') center center/cover no-repeat`,
|
|
||||||
height: "500px",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{/* Overlay */}
|
|
||||||
<div
|
|
||||||
className="position-absolute top-0 start-0 w-100 h-100"
|
|
||||||
style={{
|
|
||||||
background:
|
|
||||||
"linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.1))",
|
|
||||||
}}
|
|
||||||
></div>
|
|
||||||
|
|
||||||
{/* Text Content */}
|
|
||||||
<div
|
|
||||||
className={
|
|
||||||
"position-absolute top-50 p-5 " +
|
|
||||||
(ContentAlign == "left"
|
|
||||||
? "start-0 text-start ps-10 ms-10"
|
|
||||||
: "start-50 text-end pe-10 me-10")
|
|
||||||
}
|
|
||||||
style={{
|
|
||||||
borderRadius: "10px",
|
|
||||||
background:
|
|
||||||
"linear-gradient(to bottom, rgba(194, 216, 237,1), rgba(194, 216, 237,0.8))",
|
|
||||||
boxShadow: "10px 10px 15px rgba(0, 0, 0, 0.4)",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<h1
|
|
||||||
className="fw-bold text-primary hero-title display-6 fw-extrabold"
|
|
||||||
style={{ color: "#fff" }}
|
|
||||||
>
|
|
||||||
{Title}
|
|
||||||
</h1>
|
|
||||||
<p className="lead fw-bold">{Body}</p>
|
|
||||||
{/* <a
|
|
||||||
href="#services"
|
|
||||||
className="btn btn-primary btn-lg mt-3"
|
|
||||||
>
|
|
||||||
Get Started
|
|
||||||
</a> */}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default SwaperSlideContent;
|
|
@ -50,7 +50,7 @@ const router = createBrowserRouter(
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
path: "/",
|
path: "/",
|
||||||
element: <LandingPage />,
|
element: <RootRedirect />,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
element: <AuthLayout />,
|
element: <AuthLayout />,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user