18 lines
445 B
Svelte
18 lines
445 B
Svelte
<style>
|
|
div.footer {
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #fff;
|
|
box-shadow: 0 2px 5px #000;
|
|
padding: 1rem;
|
|
z-index: 1;
|
|
}
|
|
</style>
|
|
|
|
<div class="footer">
|
|
Copyright © {new Date().getFullYear()} <a href="//ff.howfeed.biz">FemboyFinancial Holdings Co., Ltd. (USA LLC)</a>. All rights reserved.
|
|
</div>
|