-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
83 lines (65 loc) · 3.41 KB
/
footer.php
File metadata and controls
83 lines (65 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
?>
</main>
<footer class="footer">
<div class="footer-wrapper mx-auto max-w-[1080px] space-y-10">
<div class="footer-top">
<div class="footer-brand">
<?php get_template_part('partials/logo') ?>
<p class="footer-desc">
Retreats for clarity, steadiness, and grounded care.
A calm path back to what is already present.
</p>
</div>
<nav class="footer-nav">
<?php
wp_nav_menu(array(
'theme_location'=> 'footer',
'container'=> false,
'menu_class'=> 'footer-nav-list flex flex-wrap justify-center gap-6',
'fallback_cb'=> '__return_false',
));
?>
</nav>
</div>
<div class="footer-links grid grid-cols-1 gap-12"><!-- grid grid-cols-2 gap-12 hidden sm:grid -->
<div class="text-center" style="display:none;">
<h3 class="mb-4">Site Links</h3>
<a class="footer-link" href="<?php echo esc_url( home_url( '/blog/' ) ); ?>">Blog</a>
<a class="footer-link" href="<?php echo esc_url( home_url( '/faq/' ) ); ?>">FAQs</a>
</div>
<div class="text-center space-y-4">
<h3>Contat Us</h3>
<div>
<div class="footer-meta-label">Phone:</div>
<a class="footer-link" href="tel:9284755551">928-475-5551</a>
</div>
<div>
<div class="footer-meta-label">Contact Form:</div>
<a class="footer-link" href="<?php echo esc_url( home_url( '/contact/' ) ); ?>">Leave A Message</a>
</div>
</div>
</div>
<div class="footer-disclosure">
<p>Lumina provides guided retreats and educational experiences designed to support personal reflection, emotional awareness, and spiritual exploration. Our facilitators offer guidance, practices, and frameworks that many people have found supportive in their healing and growth journeys. These approaches are not rigid systems or guaranteed outcomes, and each person’s experience will be unique.</p>
<p>Lumina and its facilitators do not provide medical, psychological, or psychiatric diagnosis or treatment, and our services are not a substitute for professional healthcare. Nothing offered through this retreat should be interpreted as medical or mental health advice.</p>
<p>If you are experiencing a medical or mental health condition, or if you require immediate support, please seek care from a licensed healthcare professional or qualified mental health provider.</p>
<p>Participation in any retreat or program is voluntary and undertaken with personal responsibility. We encourage all guests to approach this work with honesty about their physical and mental health and to consult qualified professionals when appropriate.</p>
</div>
<div class="footer-bottom">
<span class="footer-bottom__copyright">© 2026 Lumina, Inc. All rights reserved.</span>
<div class="footer-bottom__links">
<span class="footer-bottom__separator footer-bottom__separator--desktop" aria-hidden="true">|</span>
<a class="footer-link" href="<?php echo esc_url( home_url( '/terms' ) ); ?>">Terms</a>
<span class="footer-bottom__separator" aria-hidden="true">|</span>
<a class="footer-link" href="<?php echo esc_url( home_url( '/privacy' ) ); ?>">Privacy</a>
</div>
</div>
</div>
</footer>
<button id="scrollBtn">
<i class="fas fa-angle-up"></i>
</button>
<?php wp_footer(); ?>
</body>
</html>