-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(VParallax): add welcome section example to docs (#19283)
Co-authored-by: Andrew Henry <[email protected]>
- Loading branch information
1 parent
2790a4d
commit ff90984
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<template> | ||
<v-parallax src="https://cdn.vuetifyjs.com/images/backgrounds/vbanner.jpg"> | ||
<v-container class="fill-height"> | ||
<v-row | ||
class="justify-center align-center flex-column-reverse flex-md-row" | ||
> | ||
<v-col cols="12" md="6"> | ||
<h1 class="text-h1 mb-8">John Doe</h1> | ||
<h3 class="text-h3 mb-8 font-weight-thin">Web Developer</h3> | ||
<v-btn class="elevation-4 rounded-xl mb-4" color="primary"> | ||
Contact Me | ||
</v-btn> | ||
</v-col> | ||
<v-col class="text-center" cols="12" md="6"> | ||
<v-avatar :size="300" class="elevation-12 mx-auto mb-8"> | ||
<v-img src="https://randomuser.me/api/portraits/men/78.jpg"></v-img> | ||
</v-avatar> | ||
</v-col> | ||
</v-row> | ||
</v-container> | ||
</v-parallax> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters