-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Navbar, add footer, update App.vue import, make Navbar work
- Loading branch information
Showing
3 changed files
with
183 additions
and
72 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
126 changes: 126 additions & 0 deletions
126
ShoppingCart/Frondend/ecommerce-ui/src/components/Footer.vue
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,126 @@ | ||
<template> | ||
<footer> | ||
<div class="container pt-5"> | ||
<div class="row"> | ||
<div class="col-md-3 col-6"> | ||
<ul style="list-style-type: none"> | ||
<li class="text-light font-weight-bold pb-2">Get to Know Us</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">About Us</a> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">Android App</a | ||
><br /> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">iOS App</a | ||
><br /> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="col-md-3 col-6"> | ||
<ul style="list-style-type: none"> | ||
<li class="text-light font-weight-bold">Connect With Us</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">Facebook</a> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">Twitter</a | ||
><br /> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">Instagram</a | ||
><br /> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="col-md-3 col-6"> | ||
<ul style="list-style-type: none"> | ||
<li class="text-light font-weight-bold">Make Money With Us</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">Sell with Us</a> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#" | ||
>Become an Affiliate</a | ||
><br /> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#" | ||
>Advertise Your Products</a | ||
><br /> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="col-md-3 col-6"> | ||
<ul style="list-style-type: none"> | ||
<li class="text-light font-weight-bold">Let Us Help You</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#" | ||
>Return Centre</a | ||
> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#" | ||
>100% Purchase Protection</a | ||
><br /> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">Help</a><br /> | ||
</li> | ||
<li> | ||
<a class="footer-link font-weight-light" href="#">App Download</a | ||
><br /> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="text-center py-5"> | ||
<img id="logo" src="../assets/icon2.png" /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: "Footer", | ||
}; | ||
</script> | ||
|
||
<style> | ||
footer { | ||
margin-top: 100px; | ||
background-color: #232f3e; | ||
font-size: 16px; | ||
} | ||
li { | ||
padding-left: 0; | ||
padding-bottom: 10px; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
.footer-link { | ||
color: #ddd; | ||
} | ||
#logo { | ||
width: 150px; | ||
} | ||
footer { | ||
font-family: "Roboto", sans-serif; | ||
} | ||
</style> |
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