mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-06 10:03:38 +00:00
230 lines
7.7 KiB
TypeScript
230 lines
7.7 KiB
TypeScript
import { motion } from "framer-motion";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useState } from "react";
|
|
|
|
const FeaturesSection = () => {
|
|
const { t } = useTranslation();
|
|
const [hoveredIndex, setHoveredIndex] = useState<number | null>(null);
|
|
|
|
const features = [
|
|
{
|
|
name: t("landingPage.outgoingRecords"),
|
|
description: t("landingPage.outgoingRecordsDesc"),
|
|
icon: (
|
|
<svg
|
|
className="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8"
|
|
/>
|
|
</svg>
|
|
),
|
|
color: "bg-primary",
|
|
},
|
|
{
|
|
name: t("landingPage.incomingRecords"),
|
|
description: t("landingPage.incomingRecordsDesc"),
|
|
icon: (
|
|
<svg
|
|
className="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
/>
|
|
</svg>
|
|
),
|
|
color: "bg-primary-500",
|
|
},
|
|
{
|
|
name: t("landingPage.approvalWorkflows"),
|
|
description: t("landingPage.approvalWorkflowsDesc"),
|
|
icon: (
|
|
<svg
|
|
className="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
),
|
|
color: "bg-[#3B82F6]",
|
|
},
|
|
{
|
|
name: t("landingPage.interactiveDashboard"),
|
|
description: t("landingPage.interactiveDashboardDesc"),
|
|
icon: (
|
|
<svg
|
|
className="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
|
|
/>
|
|
</svg>
|
|
),
|
|
color: "bg-[#8B5CF6]",
|
|
},
|
|
{
|
|
name: t("landingPage.organizedFolders"),
|
|
description: t("landingPage.organizedFoldersDesc"),
|
|
icon: (
|
|
<svg
|
|
className="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z"
|
|
/>
|
|
</svg>
|
|
),
|
|
color: "bg-[#EC4899]",
|
|
},
|
|
{
|
|
name: t("landingPage.securityAccessControl"),
|
|
description: t("landingPage.securityAccessControlDesc"),
|
|
icon: (
|
|
<svg
|
|
className="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"
|
|
/>
|
|
</svg>
|
|
),
|
|
color: "bg-[#F59E0B]",
|
|
},
|
|
];
|
|
|
|
return (
|
|
<div className="py-16 bg-gradient-to-b from-gray-50 to-white dark:from-gray-900 dark:to-gray-800">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.5 }}
|
|
viewport={{ once: true }}
|
|
className="lg:text-center mb-16"
|
|
>
|
|
<span className="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-primary/10 text-primary">
|
|
{t("landingPage.powerfulFeaturesTitle")}
|
|
</span>
|
|
<h2 className="mt-4 text-4xl font-extrabold tracking-tight text-gray-900 dark:text-white sm:text-5xl">
|
|
<span className="block">
|
|
{t("landingPage.powerfulFeaturesSubtitle")}
|
|
</span>
|
|
<span className="block text-primary">
|
|
{t("landingPage.documentWorkflow")}
|
|
</span>
|
|
</h2>
|
|
<p className="mt-6 max-w-3xl text-xl text-gray-600 dark:text-gray-300 lg:mx-auto">
|
|
{t("landingPage.powerfulFeaturesDesc")}
|
|
</p>
|
|
</motion.div>
|
|
|
|
<div className="mt-12">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
{features.map((feature, index) => (
|
|
<motion.div
|
|
key={feature.name}
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.5, delay: index * 0.1 }}
|
|
viewport={{ once: true }}
|
|
onHoverStart={() => setHoveredIndex(index)}
|
|
onHoverEnd={() => setHoveredIndex(null)}
|
|
className="relative"
|
|
>
|
|
<div
|
|
className={`absolute -inset-0.5 rounded-xl ${
|
|
feature.color
|
|
} blur opacity-75 transition duration-500 ${
|
|
hoveredIndex === index ? "opacity-100" : "opacity-0"
|
|
}`}
|
|
></div>
|
|
<div className="relative bg-white dark:bg-gray-800 p-6 rounded-xl border border-gray-200 dark:border-gray-700 h-full transition-all duration-300 hover:border-primary/30">
|
|
<div
|
|
className={`flex items-center justify-center h-12 w-12 rounded-lg ${feature.color} text-white mb-4`}
|
|
>
|
|
{feature.icon}
|
|
</div>
|
|
<h3 className="text-xl font-bold text-gray-900 dark:text-white mb-2">
|
|
{feature.name}
|
|
</h3>
|
|
<p className="text-gray-600 dark:text-gray-300">{feature.description}</p>
|
|
<div className="mt-4">
|
|
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Stats Section */}
|
|
<motion.div
|
|
initial={{ opacity: 0 }}
|
|
whileInView={{ opacity: 1 }}
|
|
transition={{ duration: 0.5, delay: 0.3 }}
|
|
viewport={{ once: true }}
|
|
className="mt-20 bg-gradient-to-r from-primary to-primary-500 rounded-2xl shadow-xl overflow-hidden"
|
|
>
|
|
<div className="max-w-7xl mx-auto py-12 px-6 lg:px-8">
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
|
|
{[
|
|
{ number: "95%", label: t("landingPage.fasterApproval") },
|
|
{ number: "10x", label: t("landingPage.auditReady") },
|
|
{ number: "100%", label: t("landingPage.organizedRecords") },
|
|
].map((stat, index) => (
|
|
<div key={index} className="px-6 py-8">
|
|
<p className="text-4xl font-extrabold text-white">
|
|
{stat.number}
|
|
</p>
|
|
<p className="mt-2 text-lg font-medium text-white/90">
|
|
{stat.label}
|
|
</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FeaturesSection;
|