Files
my2/app/components/CommonFooter.vue
Bastian Masanek cc35636d1a Implement Password Grant Flow for Authentication and Enhance User Experience
- Introduced Password Grant Flow for user authentication, allowing direct login with email and password.
- Updated `useAuth` composable to manage login and logout processes, including Single Sign-Out from Cidaas.
- Enhanced user interface with a new `UserMenu` component displaying user information and logout functionality.
- Updated homepage to show personalized greetings for logged-in users and a login prompt for guests.
- Added logout confirmation page with a countdown redirect to the homepage.
- Documented the implementation details and future enhancements for OAuth2 flows in CLAUDE.md and other relevant documentation.
- Added test credentials and guidelines for automated testing in the new TESTING.md file.
2025-11-01 15:23:08 +01:00

154 lines
3.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script setup lang="ts">
const currentYear = new Date().getFullYear()
</script>
<template>
<footer class="footer">
<div class="footer-content">
<div class="footer-main">
<!-- Logo & Description Column -->
<div class="footer-section">
<div class="footer-logo">
<NuxtLink to="/">
<img src="/img/experimenta-logo-white.svg" alt="experimenta Logo" class="footer-logo-svg" />
</NuxtLink>
</div>
<p>
Die experimenta ist Deutschlands größtes Science Center mit interaktiven Experimenten zum
Anfassen, Forscherlaboren, Kreativwerkstätten und
dem weltweit einzigartigen Science Dome ein außerschulischer Lernort für alle Altersgruppen.
</p>
</div>
<!-- Quick Links Column -->
<div class="footer-section">
<h3>Rechtliches</h3>
<ul class="footer-links">
<li><a href="#">Impressum</a></li>
<li><a href="#">Datenschutz</a></li>
<li><a href="#">AGB</a></li>
</ul>
</div>
<!-- Info Column -->
<div class="footer-section">
<h3>Über uns</h3>
<ul class="footer-links">
<li><a href="#">experimenta Shop</a></li>
<li><a href="#">Kontakt</a></li>
</ul>
</div>
<!-- Contact Column -->
<div class="footer-section">
<h3>Kontakt</h3>
<p>experimenta gGmbH<br />Experimenta-Platz<br />74072 Heilbronn</p>
<p>
<a href="mailto:info@experimenta.science" class="footer-link">info@experimenta.science</a>
</p>
</div>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom">
<p>&copy; {{ currentYear }} experimenta gGmbH. Alle Rechte vorbehalten.</p>
</div>
</div>
</footer>
</template>
<style scoped>
.footer {
background: linear-gradient(135deg, #1a0a3a 0%, #0f051d 100%);
margin-top: 80px;
position: relative;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px 30px;
}
.footer-main {
display: grid;
grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
gap: 50px;
margin-bottom: 50px;
}
.footer-section h3 {
color: #f59d24;
margin-bottom: 20px;
font-size: 1.25rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.footer-section p {
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
font-size: 14px;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 8px;
}
.footer-links a,
.footer-link {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-link:hover {
color: #ff4081;
}
.footer-logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.footer-logo-svg {
width: 200px;
height: auto;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 30px;
text-align: center;
}
.footer-bottom p {
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
margin: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
.footer-main {
grid-template-columns: 1fr;
gap: 30px;
}
.footer-logo-svg {
width: 150px;
}
}
</style>