upgrade to tamagui v2 and guest pwa overhaul

This commit is contained in:
Codex Agent
2026-02-02 13:01:20 +01:00
parent 2e78f3ab8d
commit 7c6e14ffe2
168 changed files with 47462 additions and 8914 deletions

View File

@@ -4,6 +4,54 @@
@import '../../public/fonts/google/fonts.css';
@keyframes guestNightAmbientDrift {
0% {
background-position: 0% 0%, 100% 0%, 0% 0%;
}
50% {
background-position: 12% 8%, 88% 12%, 0% 0%;
}
100% {
background-position: 0% 0%, 100% 0%, 0% 0%;
}
}
@keyframes guestNightShimmer {
0% {
transform: translateX(-180px);
opacity: 0.25;
}
45% {
transform: translateX(180px);
opacity: 0.75;
}
100% {
transform: translateX(180px);
opacity: 0.25;
}
}
@keyframes guestCompassFlyIn {
0% {
opacity: 0;
transform: translate(120px, 260px) scale(0.35) rotate(-90deg);
}
60% {
opacity: 1;
transform: translate(0px, 0px) scale(1.05) rotate(8deg);
}
100% {
opacity: 1;
transform: translate(0px, 0px) scale(1) rotate(0deg);
}
}
.guest-compass-flyin {
animation: guestCompassFlyIn 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
transform-origin: center;
will-change: transform, opacity;
}
@source '../views';
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';