Skip to content

Commit dbb5b16

Browse files
committed
feat: Implement SEO improvements with sitemap, robots.txt, enhanced meta tags, and updated game iframe paths.
1 parent d317a0c commit dbb5b16

112 files changed

Lines changed: 133 additions & 13 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/settings.local.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,18 @@
33
"allow": [
44
"WebFetch(domain:bio.link)",
55
"WebFetch(domain:github.com)",
6-
"Bash(wc:*)"
6+
"Bash(wc:*)",
7+
"Bash(npm search:*)",
8+
"Bash(npm run build:*)",
9+
"Bash(npm uninstall:*)",
10+
"Bash(lsof:*)",
11+
"Bash(xargs:*)",
12+
"WebSearch",
13+
"WebFetch(domain:phaserjs.github.io)",
14+
"Bash(ls:*)",
15+
"Bash(npm install:*)",
16+
"Bash(identify:*)",
17+
"Bash(grep:*)"
718
]
819
}
920
}

astro.config.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
import { defineConfig } from 'astro/config';
22
import tailwind from '@astrojs/tailwind';
3+
import sitemap from '@astrojs/sitemap';
34

45
// https://astro.build/config
56
export default defineConfig({
6-
integrations: [tailwind()],
7+
integrations: [
8+
tailwind(),
9+
sitemap({
10+
changefreq: 'weekly',
11+
priority: 0.7,
12+
lastmod: new Date(),
13+
})
14+
],
715
site: 'https://proyecto26.com',
816
output: 'static',
917
build: {

package-lock.json

Lines changed: 63 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"astro": "astro"
1414
},
1515
"dependencies": {
16+
"@astrojs/sitemap": "^3.0.0",
1617
"@astrojs/tailwind": "^5.1.0",
1718
"astro": "^4.5.0",
1819
"gsap": "^3.12.5",
File renamed without changes.

0 commit comments

Comments
 (0)