Skip to content

Commit ef8c56d

Browse files
committed
Fix page link issues and some minor tweaks
1 parent f48e448 commit ef8c56d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

project/src/components/footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
<a href={`${import.meta.env.BASE_URL}contact`}>Contact</a>
1212
<p>&copy; 2025 Saykan Combat. All rights reserved.</p>
1313
<p>Designed by C</p>
14-
<strong><a href="mailto:example@example.com">Contact Designer</a></strong>
14+
<strong><a href="mailto:example@example.com">Contact Club</a></strong>
1515
</footer>

project/src/pages/contact2.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ import Layout from '../layouts/Layout.astro';
1111

1212
<p>We will be in contact with you shortly.</p>
1313

14-
<p><a href="./">Return to Home</a></p>
14+
<p><a href={`${import.meta.env.BASE_URL}`}>Return to Home</a></p>
1515
</Layout>
1616

project/src/pages/gallery.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import Layout from '../layouts/Layout.astro';
99

1010
<br>
1111
<div class="gallery-images">
12-
<img src={`${import.meta.env.BASE_URL}images/img1.png`} alt="Image 1" style="width: 50%; height: auto;" />
13-
<img src={`${import.meta.env.BASE_URL}images/escrima.jpg`} alt="Image 2" style="width: 50%; height: auto;" />
14-
<img src={`${import.meta.env.BASE_URL}images/img2.jpg`} alt="Image 3" style="width: 50%; height: auto;" />
15-
<img src={`${import.meta.env.BASE_URL}images/img3.jpg`} alt="Image 4" style="width: 50%; height: auto;" />
12+
<img src={`${import.meta.env.BASE_URL}images/img1.png`} alt="Image 1" />
13+
<img src={`${import.meta.env.BASE_URL}images/escrima.jpg`} alt="Image 2" />
14+
<img src={`${import.meta.env.BASE_URL}images/img2.jpg`} alt="Image 3" />
15+
<img src={`${import.meta.env.BASE_URL}images/img3.jpg`} alt="Image 4" />
1616
</div>
1717

1818
</Layout>

0 commit comments

Comments
 (0)