Skip to content

Commit 99c97d4

Browse files
author
Bernardo Barros
committed
fix: usar caminhos relativos para imagens/links no GitHub Pages (personalfotobw.jpeg, profile.svg e link Home)
1 parent d9f0545 commit 99c97d4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/app/components/footer/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<span class="text-slate-300 dark:text-slate-600"></span>
88
<a href="https://www.linkedin.com/in/bernardo-terrabuio-paes-de-barros-6b9877214/" target="_blank" rel="noopener" class="text-slate-600 hover:text-slate-900 transition dark:text-slate-300 dark:hover:text-white">LinkedIn</a>
99
<span class="text-slate-300 dark:text-slate-600"></span>
10-
<a href="/" class="text-slate-600 hover:text-slate-900 transition dark:text-slate-300 dark:hover:text-white">{{ 'footer.home' | t }}</a>
10+
<a routerLink="/" class="text-slate-600 hover:text-slate-900 transition dark:text-slate-300 dark:hover:text-white">{{ 'footer.home' | t }}</a>
1111
</div>
1212
</div>
1313
</div>

src/app/pages/home/home.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,10 @@ <h1 appScrollReveal class="heading-strong sm:text-5xl lg:text-6xl">
4545
<div appScrollReveal [delay]="50" class="md:order-first">
4646
<div appCursorParallax [cpStrengthX]="10" [cpStrengthY]="10" class="group relative mx-auto h-72 w-72 overflow-hidden rounded-3xl border border-white/10 bg-gradient-to-br from-dragula-purple/20 to-emerald-400/10 p-1 shadow-2xl shadow-black/40 ring-1 ring-white/10 sm:h-80 sm:w-80">
4747
<div class="absolute inset-0 -z-10 bg-[radial-gradient(ellipse_at_top_left,rgba(110,86,207,0.25),transparent_50%),radial-gradient(ellipse_at_bottom_right,rgba(34,197,94,0.2),transparent_50%)]"></div>
48-
<img src="/personalfotobw.jpeg" alt="Foto de perfil de Bernardo" class="h-full w-full rounded-2xl object-cover transition duration-500 ease-out group-hover:scale-105 group-hover:brightness-110"/>
48+
<img src="personalfotobw.jpeg" alt="Foto de perfil de Bernardo" class="h-full w-full rounded-2xl object-cover transition duration-500 ease-out group-hover:scale-105 group-hover:brightness-110"/>
4949
<div class="pointer-events-none absolute inset-0 rounded-2xl ring-1 ring-inset ring-white/20"></div>
5050
</div>
5151
</div>
5252
</div>
5353
</div>
5454
</section>
55-

src/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
<meta property="og:type" content="website">
1313
<meta property="og:title" content="Bernardo — Portfólio">
1414
<meta property="og:description" content="Desenvolvedor Full Stack / Mobile / BI.">
15-
<meta property="og:image" content="/profile.svg">
15+
<meta property="og:image" content="profile.svg">
1616
<meta property="twitter:card" content="summary_large_image">
1717
<meta property="twitter:title" content="Bernardo — Portfólio">
1818
<meta property="twitter:description" content="Desenvolvedor Full Stack / Mobile / BI.">
19-
<meta property="twitter:image" content="/profile.svg">
19+
<meta property="twitter:image" content="profile.svg">
2020
<link rel="preconnect" href="https://fonts.googleapis.com">
2121
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
2222
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">

0 commit comments

Comments
 (0)