@stevederico/skateboard-ui 2.18.0 → 2.19.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 +4 -0
- package/package.json +1 -1
- package/views/LandingView.jsx +3 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/views/LandingView.jsx
CHANGED
|
@@ -97,8 +97,9 @@ 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="
|
|
100
|
+
<section className="relative py-24 md:py-40 text-center overflow-hidden" style={{ background: 'linear-gradient(135deg, color-mix(in oklch, var(--color-app) 15%, var(--color-background)), color-mix(in oklch, var(--color-app) 5%, var(--color-background)))' }}>
|
|
101
|
+
<div className="absolute inset-0 opacity-10" style={{ background: 'radial-gradient(ellipse at 20% 50%, var(--color-app) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, var(--color-app) 0%, transparent 50%)' }} />
|
|
102
|
+
<div className="relative max-w-4xl mx-auto px-6">
|
|
102
103
|
<h1 className="text-5xl sm:text-6xl md:text-7xl lg:text-8xl font-bold mb-8 text-foreground leading-tight">
|
|
103
104
|
{constants.tagline}
|
|
104
105
|
</h1>
|