Skip to content

Commit a91652e

Browse files
add home screen
1 parent 1a779ab commit a91652e

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/app/pages/home/home.component.html

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ <h1 class="text-sm text-zinc-400">
1010
Just type the data and generate the meta tags for your website.
1111
</h1>
1212
</div>
13+
<github-button
14+
type="stargazers"
15+
namespace="gustavoquinalha"
16+
repo="seotopper"
17+
></github-button>
1318
</div>
1419

1520
<div

src/app/utils/code.js

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export function returnCode(data) {
2323
<!-- HTML Meta Tags -->
2424
<meta charset="${data.charset}">
2525
<meta name="viewport" content="${data.viewport}">
26+
<base href="/">
2627
<title>${data.title}</title>
2728
<link rel="canonical" href="${data.canonical}">
2829
<link rel="icon" type="image/x-icon" href="${data.favicon}">

src/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<!-- HTML Meta Tags -->
2020
<meta charset="utf-8" />
2121
<meta name="viewport" content="width=device-width, initial-scale=1" />
22+
<base href="/">
2223
<title>SeoTopper - Preview and generate meta tags</title>
2324
<link rel="canonical" href="https://seotopper.netlify.app/" />
2425
<link rel="icon" type="image/x-icon" href="https://seotopper.netlify.app/favicon.ico" />

0 commit comments

Comments
 (0)