mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
ada12878d1
* chore(docs): update sponsors on main page - Update sponsors layout on main page - Add a footer section on hero contents * Extract common code * Fix main page parallax image issue * Remove unused variables * Remove unused variables
27 lines
576 B
Vue
27 lines
576 B
Vue
<template>
|
||
<div class="hero-content">
|
||
<Content />
|
||
</div>
|
||
<el-divider style="margin-bottom: 0" />
|
||
<div class="text-center py-6 text-xs">
|
||
<p class="mb-1">
|
||
Released under the
|
||
<a
|
||
href="https://opensource.org/licenses/MIT"
|
||
target="_blank"
|
||
rel="noopener noreferer"
|
||
>MIT License</a
|
||
>.
|
||
</p>
|
||
<p class="mt-1">
|
||
Made with ❤️ by
|
||
<a
|
||
href="https://github.com/element-plus"
|
||
target="_blank"
|
||
rel="noopener noreferer"
|
||
>Element Plus</a
|
||
>
|
||
</p>
|
||
</div>
|
||
</template>
|