|
1 | 1 | --- |
| 2 | +import '@v1/styles/global.css'; |
2 | 3 | import Layout from '@layouts/Layout.astro'; |
3 | 4 | import Hero from '@components/Hero.astro'; |
4 | 5 | import Footer from '@components/Footer.astro'; |
@@ -32,33 +33,35 @@ const description = fm.description; |
32 | 33 | description={page.data.description} |
33 | 34 | /> |
34 | 35 |
|
35 | | - <div class="section--block section--block--small-pad bg-navy relative"> |
36 | | - <div class="absolute top-0 left-0 z-40 inline-block w-full"> |
37 | | - <Image |
38 | | - src={ImageLightTrail} |
39 | | - alt="Sphere" |
40 | | - class="fade-in--pure relative h-auto w-full" |
41 | | - data-scroll-effect="parallax" |
42 | | - data-scroll-speed="0.1" |
43 | | - data-scroll-direction="down" |
44 | | - data-viewport-offset="200" |
45 | | - data-max-movement="50" |
| 36 | + <div class="section--block section--block--pad bg-midnight-fjord relative"> |
| 37 | + <div class="max-width"> |
| 38 | + <div class="absolute top-0 left-0 z-40 inline-block w-full"> |
| 39 | + <Image |
| 40 | + src={ImageLightTrail} |
| 41 | + alt="Sphere" |
| 42 | + class="fade-in--pure relative h-auto w-full" |
| 43 | + data-scroll-effect="parallax" |
| 44 | + data-scroll-speed="0.1" |
| 45 | + data-scroll-direction="down" |
| 46 | + data-viewport-offset="200" |
| 47 | + data-max-movement="50" |
| 48 | + data-reveal="fade-in--pure--visible" |
| 49 | + data-reveal-delay="100" |
| 50 | + data-reveal-immediate="true" |
| 51 | + /> |
| 52 | + </div> |
| 53 | + <div |
| 54 | + class="fade-in--pure relative z-50 grid w-full max-w-none grid-cols-1 gap-8 md:grid-cols-2 md:gap-10 lg:grid-cols-3 lg:gap-12.5" |
46 | 55 | data-reveal="fade-in--pure--visible" |
47 | | - data-reveal-delay="100" |
48 | 56 | data-reveal-immediate="true" |
49 | | - /> |
50 | | - </div> |
51 | | - <div |
52 | | - class="fade-in--pure relative z-50 grid w-full max-w-none grid-cols-1 gap-8 md:grid-cols-2 md:gap-10 lg:grid-cols-3 lg:gap-12.5" |
53 | | - data-reveal="fade-in--pure--visible" |
54 | | - data-reveal-immediate="true" |
55 | | - data-reveal-delay="100" |
56 | | - > |
57 | | - { |
58 | | - useCases.map((useCase) => ( |
59 | | - <UcCard title={useCase.data.title} description={useCase.data.description || ''} /> |
60 | | - )) |
61 | | - } |
| 57 | + data-reveal-delay="100" |
| 58 | + > |
| 59 | + { |
| 60 | + useCases.map((useCase) => ( |
| 61 | + <UcCard title={useCase.data.title} description={useCase.data.description || ''} /> |
| 62 | + )) |
| 63 | + } |
| 64 | + </div> |
62 | 65 | </div> |
63 | 66 | </div> |
64 | 67 | <GlobalSection /> |
|
0 commit comments