-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24b5952
commit cf9c981
Showing
13 changed files
with
161 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
index.html,1737309080942,01a2753341561222b6f58fa2c5c093a6fb6797f34146c2e4806428ed50a3328f | ||
vite.svg,1735530934329,699a02e0e68a579f687d364bbbe7633161244f35af068220aee37b1b33dfb3c7 | ||
assets/default-avatar-DVE6JZcB.png,1737309080942,fcb2010c531eb12e0670e1f7aebf51fb79845156e605db81a461d7ee220218dd | ||
assets/index-ChCOBgsh.css,1737309080943,bd3485d64ee70255ba7875266048c0a4487fa2fa0a3177ee8cb7828ae0f3350c | ||
assets/teamwork-CThP8H8_.jpg,1737309080942,aa0a35edb27afafab2f8acdc32128a50b6eef727c7c79e72767119e232c0b7ca | ||
assets/index-DIAyA-cN.js,1737309080943,9d50eabe7b784d4ed01b06f0d40615e82386bba56934ebf06e29d6fd12ec872a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"projects": { | ||
"default": "assignment-12-7ff66" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"hosting": { | ||
"public": "dist", | ||
"ignore": [ | ||
"firebase.json", | ||
"**/.*", | ||
"**/node_modules/**" | ||
], | ||
"rewrites": [ | ||
{ | ||
"source": "**", | ||
"destination": "/index.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* /index.html 200 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import React from "react"; | ||
import { motion } from "framer-motion"; | ||
import { FaUserTie, FaTasks, FaMoneyCheckAlt, FaChartLine } from "react-icons/fa"; | ||
|
||
const services = [ | ||
{ | ||
id: 1, | ||
title: "Employee Management", | ||
description: | ||
"Efficiently manage employee records, performance, and payroll with our streamlined tools.", | ||
icon: <FaUserTie />, | ||
bgColor: "bg-primary", | ||
}, | ||
{ | ||
id: 2, | ||
title: "HR Solutions", | ||
description: | ||
"Simplify HR processes, recruitment, and onboarding with advanced solutions.", | ||
icon: <FaTasks />, | ||
bgColor: "bg-secondary", | ||
}, | ||
{ | ||
id: 3, | ||
title: "Payroll Processing", | ||
description: | ||
"Automate salary processing and ensure timely and accurate payouts.", | ||
icon: <FaMoneyCheckAlt />, | ||
bgColor: "bg-accent", | ||
}, | ||
{ | ||
id: 4, | ||
title: "Performance Tracking", | ||
description: | ||
"Monitor employee performance and provide valuable feedback for growth.", | ||
icon: <FaChartLine />, | ||
bgColor: "bg-text", | ||
}, | ||
]; | ||
|
||
export default function OurServices() { | ||
return ( | ||
<section className="bg-background py-16"> | ||
<div className="container mx-auto px-4 text-center"> | ||
{/* Section Heading */} | ||
<motion.h2 | ||
className="text-primary text-4xl font-bold mb-12" | ||
initial={{ opacity: 0, y: -50 }} | ||
animate={{ opacity: 1, y: 0 }} | ||
transition={{ duration: 0.8 }} | ||
> | ||
Our Services | ||
</motion.h2> | ||
|
||
{/* Services Grid */} | ||
<div className="grid gap-8 sm:grid-cols-2 lg:grid-cols-4"> | ||
{services.map((service, index) => ( | ||
<motion.div | ||
key={service.id} | ||
className={`flex flex-col items-center rounded-lg shadow-lg p-6 ${service.bgColor} transition-transform transform hover:-translate-y-2`} | ||
initial={{ opacity: 0, scale: 0.9 }} | ||
whileInView={{ opacity: 1, scale: 1 }} | ||
viewport={{ once: true, amount: 0.2 }} | ||
transition={{ | ||
duration: 0.6, | ||
delay: index * 0.2, // Add a stagger effect for each card | ||
}} | ||
> | ||
<div className="text-5xl text-white mb-4">{service.icon}</div> | ||
<h3 className="text-xl font-bold text-white mb-3"> | ||
{service.title} | ||
</h3> | ||
<p className="text-sm text-white">{service.description}</p> | ||
</motion.div> | ||
))} | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters