Changed coming soon font size
This commit is contained in:
parent
43673cfd37
commit
bc516b58b6
@ -1,4 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../../pages/Misc/ComingSoonPage";
|
||||||
|
|
||||||
const ActivityTimeline = () => {
|
const ActivityTimeline = () => {
|
||||||
return (
|
return (
|
||||||
@ -132,21 +133,7 @@ const ActivityTimeline = () => {
|
|||||||
// </ul>
|
// </ul>
|
||||||
// </div>
|
// </div>
|
||||||
// </div>
|
// </div>
|
||||||
<div className="misc-wrapper">
|
<ComingSoonPage></ComingSoonPage>
|
||||||
<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>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,25 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../../pages/Misc/ComingSoonPage";
|
||||||
|
|
||||||
const WorkPlan = () => {
|
const WorkPlan = () => {
|
||||||
return (
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<>
|
|
||||||
<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>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default WorkPlan;
|
export default WorkPlan;
|
||||||
|
@ -81,15 +81,10 @@
|
|||||||
"link": "",
|
"link": "",
|
||||||
"submenu": [
|
"submenu": [
|
||||||
{
|
{
|
||||||
"text": "Application Users",
|
"text": "Users",
|
||||||
"available": true,
|
"available": true,
|
||||||
"link": "/employees/"
|
"link": "/employees/"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"text": "Employees",
|
|
||||||
"available": true,
|
|
||||||
"link": "/employees/list"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"text": "Masters",
|
"text": "Masters",
|
||||||
"available": true,
|
"available": true,
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
const ImageGallary = () => {
|
const ImageGallary = () => {
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default ImageGallary;
|
export default ImageGallary;
|
||||||
|
@ -4,8 +4,8 @@ import { Link } from 'react-router-dom'
|
|||||||
export const ComingSoonPage = () => {
|
export const ComingSoonPage = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="misc-wrapper">
|
<div className="misc-wrapper pt-10">
|
||||||
<h2 className="mb-2 mx-2">Coming Soon!</h2>
|
<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.
|
<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>
|
Thank you for your patience!</p>
|
||||||
<div className="mt-4">
|
<div className="mt-4">
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
const Inventory = () => {
|
const Inventory = () => {
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Inventory;
|
export default Inventory;
|
||||||
|
@ -18,6 +18,7 @@ import "./ProjectDetails.css";
|
|||||||
import {useEmployeesByProjectAllocated, useProjectDetails} from "../../hooks/useProjects";
|
import {useEmployeesByProjectAllocated, useProjectDetails} from "../../hooks/useProjects";
|
||||||
import {useDispatch} from "react-redux";
|
import {useDispatch} from "react-redux";
|
||||||
import {setProjectId} from "../../slices/localVariablesSlice";
|
import {setProjectId} from "../../slices/localVariablesSlice";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
|
|
||||||
const ProjectDetails = () => {
|
const ProjectDetails = () => {
|
||||||
@ -150,21 +151,7 @@ const ProjectDetails = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
const Reports = () => {
|
const Reports = () => {
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Reports;
|
export default Reports;
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
const Connect = () => {
|
const Connect = () => {
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Connect;
|
export default Connect;
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
const Documentation = () => {
|
const Documentation = () => {
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Documentation;
|
export default Documentation;
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
const Support = () => {
|
const Support = () => {
|
||||||
return <div className="misc-wrapper">
|
return <ComingSoonPage></ComingSoonPage>;
|
||||||
<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>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Support;
|
export default Support;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user