Skip to content

Commit f18d826

Browse files
committed
final commit
1 parent 3976840 commit f18d826

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

public/team.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,7 @@
447447
}
448448
</style>
449449
</head>
450+
450451
<body>
451452
<!-- Animated Stars Background -->
452453
<div class="stars" id="stars"></div>

src/pages/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Home = () => {
2323

2424
<div className="relative z-10 container mx-auto px-4 py-16 md:py-24">
2525
{/* Hero Section */}
26-
<div className="max-w-4xl mx-auto text-center space-y-8">
26+
<div className="max-w-4xl mx-auto text-center space-y-8 animate-fade-in-up">
2727
<div className="inline-flex items-center gap-2 px-4 py-2 bg-primary/10 border border-primary/20 rounded-full text-sm text-primary">
2828
<Atom className="w-4 h-4" />
2929
<span>Quantum Cryptography Simulator</span>

tailwind.config.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,23 @@ export default {
8888
"0%, 100%": { transform: "translateY(0px)" },
8989
"50%": { transform: "translateY(-20px)" },
9090
},
91+
"fade-in-up": {
92+
"0%": {
93+
opacity: "0",
94+
transform: "translateY(30px)",
95+
},
96+
"100%": {
97+
opacity: "1",
98+
transform: "translateY(0)",
99+
},
100+
},
91101
},
92102
animation: {
93103
"accordion-down": "accordion-down 0.2s ease-out",
94104
"accordion-up": "accordion-up 0.2s ease-out",
95105
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
96106
"float": "float 3s ease-in-out infinite",
107+
"fade-in-up": "fade-in-up 1s ease-out",
97108
},
98109
},
99110
},

0 commit comments

Comments
 (0)