Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

18
components/Card.js Executable file
View File

@@ -0,0 +1,18 @@
'use client'
import { useEffect } from 'react'
export default function Card({children, className}){
useEffect(() => {
document.getElementById('card').classList.remove('blur-lg');
document.getElementById('card').classList.add('blur-none');
document.getElementById('card').classList.remove('opacity-30');
document.getElementById('card').classList.add('opacity-100');
});
return(
<div id="card" className={"bg-white shadow-md rounded-3xl w-full h-full opacity-100 blur-lg transition duration-1000 " + className}>
{children}
</div>
)
}