Changed coming soon font size
This commit is contained in:
parent
43673cfd37
commit
bc516b58b6
@ -1,4 +1,5 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../../pages/Misc/ComingSoonPage";
|
||||
|
||||
const ActivityTimeline = () => {
|
||||
return (
|
||||
@ -132,21 +133,7 @@ const ActivityTimeline = () => {
|
||||
// </ul>
|
||||
// </div>
|
||||
// </div>
|
||||
<div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>
|
||||
<ComingSoonPage></ComingSoonPage>
|
||||
);
|
||||
};
|
||||
|
||||
|
@ -1,25 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../../pages/Misc/ComingSoonPage";
|
||||
|
||||
const WorkPlan = () => {
|
||||
return (
|
||||
<>
|
||||
<div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default WorkPlan;
|
||||
|
@ -81,15 +81,10 @@
|
||||
"link": "",
|
||||
"submenu": [
|
||||
{
|
||||
"text": "Application Users",
|
||||
"text": "Users",
|
||||
"available": true,
|
||||
"link": "/employees/"
|
||||
},
|
||||
{
|
||||
"text": "Employees",
|
||||
"available": true,
|
||||
"link": "/employees/list"
|
||||
},
|
||||
{
|
||||
"text": "Masters",
|
||||
"available": true,
|
||||
|
@ -1,21 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
const ImageGallary = () => {
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default ImageGallary;
|
||||
|
@ -4,8 +4,8 @@ import { Link } from 'react-router-dom'
|
||||
export const ComingSoonPage = () => {
|
||||
return (
|
||||
<>
|
||||
<div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<div className="misc-wrapper pt-10">
|
||||
<h5 className="mb-2 mx-2">Coming Soon!</h5>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
|
@ -1,21 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
const Inventory = () => {
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default Inventory;
|
||||
|
@ -18,6 +18,7 @@ import "./ProjectDetails.css";
|
||||
import {useEmployeesByProjectAllocated, useProjectDetails} from "../../hooks/useProjects";
|
||||
import {useDispatch} from "react-redux";
|
||||
import {setProjectId} from "../../slices/localVariablesSlice";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
|
||||
const ProjectDetails = () => {
|
||||
@ -150,21 +151,7 @@ const ProjectDetails = () => {
|
||||
}
|
||||
|
||||
default:
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -1,21 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
const Reports = () => {
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default Reports;
|
||||
|
@ -1,21 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
const Connect = () => {
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default Connect;
|
||||
|
@ -1,21 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
const Documentation = () => {
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default Documentation;
|
||||
|
@ -1,21 +1,8 @@
|
||||
import React from "react";
|
||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||
|
||||
const Support = () => {
|
||||
return <div className="misc-wrapper">
|
||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
||||
<p className="mb-4 mx-2">We're currently working on this feature and will have it ready shortly.
|
||||
Thank you for your patience!</p>
|
||||
<div className="mt-4">
|
||||
<img
|
||||
src="../assets/img/illustrations/girl-doing-yoga-light.png"
|
||||
alt="girl-doing-yoga-light"
|
||||
aria-label="Girl doing yoga light"
|
||||
width="500"
|
||||
className="img-fluid"
|
||||
data-app-dark-img="illustrations/girl-doing-yoga-dark.png"
|
||||
data-app-light-img="illustrations/girl-doing-yoga-light.png" />
|
||||
</div>
|
||||
</div>;
|
||||
return <ComingSoonPage></ComingSoonPage>;
|
||||
};
|
||||
|
||||
export default Support;
|
||||
|
Loading…
x
Reference in New Issue
Block a user