Skip to content

Commit 3054f2b

Browse files
mariaclarabragamatthewlow-dwa
authored andcommitted
added footer with copyright
Signed-off-by: mclarabraga01 <mclarabraga01@yahoo.com>
1 parent 115fe5c commit 3054f2b

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

src/layout/MainLayout.astro

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ import { BASE_URL } from "../utils/constants";
3030
</header>
3131
<!-- Rest of the content -->
3232
<slot>Default Text</slot>
33+
<!-- Footer -->
34+
<footer id="bottom container">
35+
<div class="footer-bar desktop:px-40 tablet:px-32 mobile-h:px-5 mobile-v:px-5">
36+
<p> Copyright © ASWF Assets Repository a Series of LF Projects, LLC <br/>
37+
For website terms of use, trademark policy, and other project policies, please see <a href="https://lfprojects.org/"> https://lfprojects.org/. </a> <br/>
38+
To report a security vulnerability, please see our security guide on <a href="//github.com/AcademySoftwareFoundation/dpel-website/blob/main/SECURITY.md"><u>Github.</u></a>
39+
</p>
40+
</div>
41+
</footer>
3342
</body>
3443
</html>
3544

@@ -66,6 +75,35 @@ import { BASE_URL } from "../utils/constants";
6675
min-height: 50px;
6776
}
6877

78+
footer{
79+
position: fixed;
80+
left: 0;
81+
z-index: 99999;
82+
position: relative;
83+
font-family: "Titillium Web", "Open Sans", sans-serif !important;
84+
font-weight: 100;
85+
font-size: 13px;
86+
color: #9d9d9d;
87+
letter-spacing: 1px;
88+
}
89+
90+
.footer-bar{
91+
background-color: #292929;
92+
height: 130px;
93+
display: flex;
94+
justify-content: center;
95+
align-items: center;
96+
text-align: center;
97+
padding: 15px;
98+
}
99+
100+
.footer-bar a{
101+
color: #31cad3 !important;
102+
}
103+
.footer-bar a:hover{
104+
color: #FFFFFF !important;
105+
}
106+
69107
.blue {
70108
color: #31cad3 !important;
71109
}

0 commit comments

Comments
 (0)