Ui cahnges and button linking

This commit is contained in:
2026-04-18 21:53:42 +05:30
parent 174faf5ccd
commit 7cd9585c8f
21 changed files with 292 additions and 210 deletions

View File

@@ -3,13 +3,9 @@
import React from "react";
import { motion } from "framer-motion";
import { Button } from "@/components/ui/button";
import {
BarChart3,
} from "lucide-react";
import { BarChart3 } from "lucide-react";
import { hrms } from "@/services/Constants";
import DemoModal from "../../_homeComponents/DemoModal";
const HRAnalytics: React.FC = () => {
return (
@@ -62,16 +58,20 @@ const HRAnalytics: React.FC = () => {
viewport={{ once: true }}
className="mt-12 text-center"
>
<Button
size="lg"
className="bg-white text-blue-700 hover:bg-blue-50 text-lg px-8 py-6 shadow-xl"
>
<BarChart3 className="mr-2" /> View Full Analytics Dashboard
</Button>
<DemoModal
trigger={
<Button
size="lg"
className="bg-white text-blue-700 hover:bg-blue-50 text-lg px-8 py-6 shadow-xl"
>
<BarChart3 className="mr-2" /> View Full Analytics Dashboard
</Button>
}
/>
</motion.div>
</div>
</section>
);
};
export default HRAnalytics
export default HRAnalytics;