Skip to content

Commit 2ff62bf

Browse files
committed
Consolidate pricing into single page, redesign Home with how-it-works and integration badges
1 parent d1b815f commit 2ff62bf

6 files changed

Lines changed: 677 additions & 586 deletions

File tree

source/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/src/components/Navigation.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const navLinks = [
99
{ label: 'SATI CODEX', href: '/sati-codex' },
1010
{ label: 'SATI OS', href: '/sati-os' },
1111
{ label: 'Pricing', href: '/pricing' },
12-
{ label: 'Commercial', href: '/commercial' },
1312
{ label: 'Contact', href: '/contact' },
1413
];
1514

@@ -119,7 +118,7 @@ export default function Navigation() {
119118
{/* CTA + Hamburger */}
120119
<div className="flex items-center gap-3">
121120
<Link
122-
to="/commercial"
121+
to="/pricing"
123122
className="hidden sm:inline-flex items-center px-4 py-2 border border-gold-400/60 text-gold-400 text-sm font-medium rounded-lg hover:bg-gold-400/10 transition-all duration-300"
124123
>
125124
Get License
@@ -163,7 +162,7 @@ export default function Navigation() {
163162
</Link>
164163
))}
165164
<Link
166-
to="/commercial"
165+
to="/pricing"
167166
className="block sm:hidden mt-2 text-center px-4 py-2.5 border border-gold-400/60 text-gold-400 text-sm font-medium rounded-lg hover:bg-gold-400/10 transition-all"
168167
onClick={() => setIsOpen(false)}
169168
>

source/src/index.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,15 @@
111111
.animate-flash-char {
112112
animation: flash-char 0.1s ease-out forwards;
113113
}
114+
115+
.animate-pulse-dot {
116+
animation: pulse-dot 2s ease-in-out infinite;
117+
}
118+
}
119+
120+
@keyframes pulse-dot {
121+
0%, 100% { opacity: 1; }
122+
50% { opacity: 0.3; }
114123
}
115124

116125
/* Scrollbar styling */

0 commit comments

Comments
 (0)