TuyFred / coffe_shop

0 stars 0 forks source link

Create re-usable partials #1

Open musilimu opened 5 days ago

musilimu commented 5 days ago

:cake: Create a re-usable footer partial

make sure you don't repeat blocks of code in many files The below block of code is redundant in these files src/main/webapp/coffeeMenu.jsp src/main/webapp/customer-dashboard.jsp src/main/webapp/index.jsp src/main/webapp/menu.jsp :face_exhaling:

    <!-- Footer with social icons -->
    <footer>
        <div class="container">
            <a href="https://youtube.com" target="_blank"><i class="fab fa-youtube"></i></a>
            <a href="https://facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
            <a href="https://instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
            <a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin"></i></a>
            <p class="mt-2">© 2024 Coffee Shop. All Rights Reserved.</p>
        </div>
    </footer>

    <!-- Bootstrap JS -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

also checkout navigation menu and other parts that can be re-used

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login - Coffee Shop</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
TuyFred commented 5 days ago

yeah , thanks , I am going to correct that all issues