File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 55 import Vanta from " $lib/components/Vanta.svelte" ;
66 import Button from " $lib/components/Button.svelte" ;
77 import ImageCompare from " $lib/components/ImageCompare.svelte" ;
8+ import Divider from " $lib/components/Divider.svelte" ;
89
910 export let id = " " ;
1011 export let classes = " " ;
12+ export let divider = false ;
1113
1214 // Hero section buttons
1315 export let buttons = [];
6567 <div class =" container aspect-video hero-image py-5" >
6668 <ImageCompare before ={heroImages .dark } after ={heroImages .light } />
6769 </div >
70+
71+ {#if divider }
72+ <Divider stroke ={true } />
73+ {/if }
6874</section >
6975
7076<style >
Original file line number Diff line number Diff line change 77 let blocks = data .props .blocks ;
88 </script >
99
10- <Hero id =" hero-section" />
10+ <Hero id ="hero-section" divider ={ true } />
1111
1212{#each blocks as block (block .id )}
1313 <ContentBlock {...block } >
You can’t perform that action at this time.
0 commit comments