-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathFeatures.tsx
More file actions
76 lines (73 loc) · 2.66 KB
/
Copy pathFeatures.tsx
File metadata and controls
76 lines (73 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { Shield, Video, MessageSquare, Smartphone, Lock, Users } from "lucide-react";
import { Card } from "./ui/card";
const features = [
{
icon: Shield,
title: "Secure Sign-Up/Sign-In",
description: "Advanced authentication with automatic token rotation to keep your account protected at all times.",
},
{
icon: Video,
title: "Peer-to-Peer Calls",
description: "Direct WebRTC connections ensure crystal-clear audio and video without intermediary servers.",
},
{
icon: MessageSquare,
title: "In-Call Chat",
description: "Real-time messaging overlay during calls for seamless communication and collaboration.",
},
{
icon: Smartphone,
title: "Device Management",
description: "Manage all your connected devices and active sessions from a unified dashboard.",
},
{
icon: Lock,
title: "End-to-End Encryption",
description: "Military-grade encryption ensures your conversations remain completely private and secure.",
},
{
icon: Users,
title: "Session Management",
description: "Complete control over your active sessions with instant revocation capabilities.",
},
];
const Features = () => {
return (
<section id="features" className="py-24 bg-secondary/30">
<div className="container mx-auto px-6">
<div className="text-center mb-16 animate-fade-in-up">
<h2 className="text-4xl md:text-5xl font-bold mb-4">
Powerful{" "}
<span className="bg-gradient-primary bg-clip-text text-primary">
Features
</span>
</h2>
<p className="text-xl text-muted-foreground max-w-2xl mx-auto">
Everything you need for secure, private video communication
</p>
</div>
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
{features.map((feature, index) => (
<Card
key={index}
className="p-8 hover:shadow-elevated transition-all duration-300 hover:-translate-y-2 bg-card border-border group animate-fade-in-up"
style={{ animationDelay: `${index * 0.1}s` }}
>
<div className="mb-4 inline-block p-3 bg-gradient-card rounded-lg group-hover:scale-110 transition-transform">
<feature.icon className="w-8 h-8 text-primary" />
</div>
<h3 className="text-xl font-semibold mb-3 text-card-foreground">
{feature.title}
</h3>
<p className="text-muted-foreground leading-relaxed">
{feature.description}
</p>
</Card>
))}
</div>
</div>
</section>
);
};
export default Features;