@stevederico/skateboard-ui 2.18.0 → 2.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ 2.20.0
4
+
5
+ Fix hero gradient using Tailwind primary token
6
+
7
+ 2.19.0
8
+
9
+ Add colored hero gradient to default landing
10
+
3
11
  2.18.0
4
12
 
5
13
  Fix DynamicIcon single-word icon name resolution
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stevederico/skateboard-ui",
3
3
  "private": false,
4
- "version": "2.18.0",
4
+ "version": "2.20.0",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./Sidebar": {
@@ -97,8 +97,10 @@ export default function LandingView() {
97
97
 
98
98
  <main>
99
99
  {/* Hero Section */}
100
- <section className="py-24 md:py-40 text-center">
101
- <div className="max-w-4xl mx-auto px-6">
100
+ <section className="relative py-24 md:py-40 text-center overflow-hidden bg-app/15">
101
+ <div className="absolute inset-0 bg-app/25" style={{ maskImage: 'radial-gradient(ellipse at 20% 50%, black 0%, transparent 70%)', WebkitMaskImage: 'radial-gradient(ellipse at 20% 50%, black 0%, transparent 70%)' }} />
102
+ <div className="absolute inset-0 bg-app/20" style={{ maskImage: 'radial-gradient(ellipse at 80% 30%, black 0%, transparent 60%)', WebkitMaskImage: 'radial-gradient(ellipse at 80% 30%, black 0%, transparent 60%)' }} />
103
+ <div className="relative max-w-4xl mx-auto px-6">
102
104
  <h1 className="text-5xl sm:text-6xl md:text-7xl lg:text-8xl font-bold mb-8 text-foreground leading-tight">
103
105
  {constants.tagline}
104
106
  </h1>