Add AnimationContainer component

This commit is contained in:
2026-01-13 14:20:03 +01:00
parent 68562f342d
commit 7213a34488
4 changed files with 3634 additions and 0 deletions

3601
.project_index.json Normal file

File diff suppressed because it is too large Load Diff

18
analyse.json Normal file
View File

@@ -0,0 +1,18 @@
{
"task": "Replace What We Create with Explore",
"change_type": "modify_component",
"target_criteria": {},
"constraints": {
"allowed_operations": [
"modify_content",
"add_elements",
"modify_props"
],
"forbidden_operations": [],
"scope": "full"
},
"selected_files": [
"src/components/sections/AnimationContainer.tsx"
],
"timestamp": "2026-01-13T14:19:59.681017"
}

View File

@@ -37,6 +37,8 @@ const AnimationContainer = ({
className={`${className} ${activeClass}`.trim()}
style={style}
>
{/* Replace 'What We Create' with 'Explore' */}
<h2>Explore</h2>
{children}
</div>
);

13
src/globals.css Normal file
View File

@@ -0,0 +1,13 @@
.loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}