Added footer with contact info & copyright

This commit is contained in:
Rob Kelly 2025-12-20 01:01:59 -07:00
parent 3e5e1bfcc8
commit 3f2283cd16
4 changed files with 43 additions and 0 deletions

View File

@ -78,5 +78,17 @@
</div> </div>
</main> </main>
</div> </div>
<footer id="contact" class="pt-2">
<div class="container text-center text-muted text-small">
<p>© <span id="year">2025</span> Intrusive Thoughts Creative Collective LLC. All rights reserved.</p>
<p>
<a href="mailto:contact@intrusive.games" class="text-white text-decoration-none"><span class="fa-solid fa-envelope"></span> contact@intrusive.games</a>
</p>
</div>
</footer>
<script>
// Update year automatically
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body> </body>
</html> </html>

View File

@ -116,5 +116,17 @@
</div> </div>
</main> </main>
</div> </div>
<footer id="contact" class="pt-2">
<div class="container text-center text-muted text-small">
<p>© <span id="year">2025</span> Intrusive Thoughts Creative Collective LLC. All rights reserved.</p>
<p>
<a href="mailto:contact@intrusive.games" class="text-white text-decoration-none"><span class="fa-solid fa-envelope"></span> contact@intrusive.games</a>
</p>
</div>
</footer>
<script>
// Update year automatically
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body> </body>
</html> </html>

View File

@ -82,5 +82,17 @@
</div> </div>
</main> </main>
</div> </div>
<footer id="contact" class="pt-2">
<div class="container text-center text-muted text-small">
<p>© <span id="year">2025</span> Intrusive Thoughts Creative Collective LLC. All rights reserved.</p>
<p>
<a href="mailto:contact@intrusive.games" class="text-white text-decoration-none"><span class="fa-solid fa-envelope"></span> contact@intrusive.games</a>
</p>
</div>
</footer>
<script>
// Update year automatically
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body> </body>
</html> </html>

View File

@ -27,6 +27,13 @@ a {
text-decoration: none; text-decoration: none;
} }
.text-small {
font-size: 12px;
}
.text-xsmall {
font-size: 10px;
}
#gameDemoCarousel { #gameDemoCarousel {
max-width: 1153px; max-width: 1153px;
} }