Skip to content

Commit 0562444

Browse files
committed
fix: basepath image route needed change
1 parent 34066b6 commit 0562444

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

src/app/components/background/background.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
height: 100vh;
1111
z-index: -1;
1212
pointer-events: none;
13-
background-image: url("/FondoLandingDarker.png");
13+
background-image: url("/2026/FondoLandingDarker.png");
1414
background-size: cover;
1515
background-position: center;
1616
}

src/app/components/body/body.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function body() {
1010
<div className={styles.fondo}>
1111
<div className={styles.image}>
1212
<Image
13-
src="/d37f886165abba69b34b989cc286df9138bc451b.png"
13+
src="/2026/d37f886165abba69b34b989cc286df9138bc451b.png"
1414
alt="Imagen con filtro de desenfoque"
1515
width={IMAGE_WIDTH}
1616
height={IMAGE_HEIGHT}

src/app/components/footer/footer.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,43 +11,43 @@ interface RRSS {
1111
const socials: RRSS[] = [
1212
{
1313
id: 1,
14-
image: "/facebookLogo.png",
14+
image: "/2026/facebookLogo.png",
1515
alt: "facebook logo",
1616
url: "https://www.facebook.com/AulaSoftwareLibre/",
1717
},
1818
{
1919
id: 2,
20-
image: "/instaLogo.png",
20+
image: "/2026/instaLogo.png",
2121
alt: "instagram logo",
2222
url: "https://www.instagram.com/aulasoftwarelibre/?hl=es",
2323
},
2424
{
2525
id: 3,
26-
image: "/telegramLogo.png",
26+
image: "/2026/telegramLogo.png",
2727
alt: "telegram logo",
2828
url: "https://t.me/AulaSoftwareLibreUCO",
2929
},
3030
{
3131
id: 4,
32-
image: "/linkedinLogo.png",
32+
image: "/2026/linkedinLogo.png",
3333
alt: "linkedin logo",
3434
url: "https://www.linkedin.com/company/aulasoftwarelibre/posts/?feedView=all",
3535
},
3636
{
3737
id: 5,
38-
image: "/twitterLogo.png",
38+
image: "/2026/twitterLogo.png",
3939
alt: "twitter logo",
4040
url: "https://x.com/aulasl",
4141
},
4242
{
4343
id: 6,
44-
image: "/githubLogo.png",
44+
image: "/2026/githubLogo.png",
4545
alt: "github logo",
4646
url: "https://github.com/aulasoftwarelibre",
4747
},
4848
{
4949
id: 7,
50-
image: "/youtubeLogo.png",
50+
image: "/2026/youtubeLogo.png",
5151
alt: "youtube logo",
5252
url: "https://www.youtube.com/c/AulaSoftwareLibre",
5353
},
@@ -64,7 +64,7 @@ export default function Footer({ isVisible }: FooterProps) {
6464
<div className={styles.info}>
6565
<p className={styles.text}>Organiza:</p>
6666
<Image
67-
src={"/logoAula.png"}
67+
src={"/2026/logoAula.png"}
6868
alt="logoAula"
6969
width={236}
7070
height={236}

src/app/components/navbar/navbar.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default function Navbar() {
8484
onMouseEnter={handleMouseEnter}
8585
onClick={() => setIsMobileMenuOpen(false)}
8686
>
87-
<Link href="/" className={styles.link}>
87+
<Link href="/2026" className={styles.link}>
8888
Inicio
8989
</Link>
9090
</li>
@@ -102,7 +102,7 @@ export default function Navbar() {
102102
onMouseEnter={handleMouseEnter}
103103
onClick={() => setIsMobileMenuOpen(false)}
104104
>
105-
<Link href="/aboutUs" className={styles.link}>
105+
<Link href="/2026/aboutUs" className={styles.link}>
106106
Sobre Nosotros
107107
</Link>
108108
</li>
@@ -122,4 +122,3 @@ export default function Navbar() {
122122
</nav>
123123
);
124124
}
125-

0 commit comments

Comments
 (0)