Sections are the base layout building block for any website. Vulk sections are very versatile and easily customizable. Explore Vulk sections.
Section wave shape
I can hold any type of content
I can hold any type of content
I can hold any type of content
I can hold any type of content
<template>
<!--Wave 1-->
<Section wave="wave-1" shape-color="grey">
<Container>
<div class="content py-6">
<Title tag="h3" :size="4" weight="semi" narrow>
<span>Iam a Section</span>
</Title>
<p class="paragraph">I can hold any type of content</p>
</div>
</Container>
</Section>
<Section color="grey">
<Container>
<div class="content py-6">
<Title tag="h3" :size="4" weight="semi" narrow>
<span>Iam a Section</span>
</Title>
<p class="paragraph">I can hold any type of content</p>
</div>
</Container>
</Section>
<!--Wave 2-->
<Section wave="wave-2" shape-color="darker">
<Container>
<div class="content py-6">
<Title tag="h3" :size="4" weight="semi" narrow inverted>
<span>Iam a Section</span>
</Title>
<p class="paragraph">I can hold any type of content</p>
</div>
</Container>
</Section>
<Section color="darker">
<Container>
<div class="content py-6">
<Title tag="h3" :size="4" weight="semi" narrow inverted>
<span>Iam a Section</span>
</Title>
<p class="paragraph">I can hold any type of content</p>
</div>
</Container>
</Section>
</template>
Section wave shape
I can hold any type of content
I can hold any type of content
<template>
<!--Tongue 1-->
<Section tongue="tongue-1" shape-color="grey">
<Container>
<div class="content py-6">
<Title tag="h3" :size="4" weight="semi" narrow>
<span>Iam a Section</span>
</Title>
<p class="paragraph">I can hold any type of content</p>
</div>
</Container>
</Section>
<!--Tongue 2-->
<Section tongue="tongue-2" shape-color="grey">
<Container>
<div class="content py-6">
<Title tag="h3" :size="4" weight="semi" narrow>
<span>Iam a Section</span>
</Title>
<p class="paragraph">I can hold any type of content</p>
</div>
</Container>
</Section>
</template>
Section background image
I can hold any type of content
<template>
<Section
v-background="{
src: '/assets/demo/img/bg/3.jpeg',
placeholder: 'https://dummyimage.com/1920x1080/',
}"
overlay
>
<Container>
<div class="has-text-centered content py-6">
<Title tag="h3" :size="4" weight="semi" narrow inverted>
<span>Iam a Section</span>
</Title>
<p class="paragraph is-inverted-light">
I can hold any type of content
</p>
</div>
</Container>
</Section>
</template>