mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 12:45:18 +02:00
⚡️ perf: can't remember
This commit is contained in:
@@ -10,12 +10,12 @@ const requirements = [
|
||||
|
||||
export function SystemRequirements() {
|
||||
return (
|
||||
<div className="bg-white/80 backdrop-blur-sm p-6 rounded-lg">
|
||||
<h2 className="text-xl font-semibold text-gray-900 mb-4">System Requirements</h2>
|
||||
<ul className="space-y-3">
|
||||
<div className="bg-white/80 backdrop-blur-sm p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 ease-in-out">
|
||||
<h2 className="text-2xl font-semibold text-gray-900 mb-6">System Requirements</h2>
|
||||
<ul className="space-y-4">
|
||||
{requirements.map((req) => (
|
||||
<li key={req} className="flex items-center gap-2">
|
||||
<Check className="h-5 w-5 text-green-500 flex-shrink-0" />
|
||||
<li key={req} className="flex items-center gap-3">
|
||||
<Check className="h-5 w-5 text-green-500 flex-shrink-0 transition-all duration-300 ease-in-out transform hover:scale-110" />
|
||||
<span className="text-gray-600">{req}</span>
|
||||
</li>
|
||||
))}
|
||||
|
Reference in New Issue
Block a user