-
Notifications
You must be signed in to change notification settings - Fork 0
feat: enhance SEO by updating robots.txt, adding sitemap.xml, and imp… #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,11 @@ | ||
| # https://www.robotstxt.org/robotstxt.html | ||
| User-agent: * | ||
| Disallow: | ||
| Allow: / | ||
| Disallow: /chat | ||
| Disallow: /settings | ||
| Disallow: /runs | ||
| Disallow: /servers | ||
| Disallow: /api/ | ||
| Disallow: /login | ||
|
|
||
| Sitemap: https://remotemcp.tech/sitemap.xml |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
| <url> | ||
| <loc>https://remotemcp.tech/</loc> | ||
| <lastmod>2024-12-01</lastmod> | ||
| <changefreq>weekly</changefreq> | ||
| <priority>1.0</priority> | ||
| </url> | ||
| </urlset> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -200,10 +200,11 @@ export function AvailableAppsSection() { | |||||
| duration: 0.5, | ||||||
| delay: categoryIndex * 0.1 + appIndex * 0.05, | ||||||
| }} | ||||||
| viewport={{ once: true }} | ||||||
| viewport={{ once: true, margin: "100px" }} | ||||||
|
||||||
| viewport={{ once: true, margin: "100px" }} | |
| viewport={{ once: true, margin: "50px" }} |
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -88,6 +88,13 @@ export const Route = createFileRoute("/")({ | |||||||||
| content: "width=device-width, initial-scale=1", | ||||||||||
| }, | ||||||||||
| ], | ||||||||||
| links: [ | ||||||||||
| // Preconnect to external domains | ||||||||||
| { | ||||||||||
| rel: "preconnect", | ||||||||||
| href: "https://github.com", | ||||||||||
| }, | ||||||||||
|
Comment on lines
+93
to
+96
|
||||||||||
| { | |
| rel: "preconnect", | |
| href: "https://github.com", | |
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The hardcoded
width="40"andheight="40"attributes may not match all use cases of theAppLogocomponent. If the component is used with different sizes via theclassNameprop, these fixed dimensions could cause aspect ratio issues or conflict with CSS sizing. Consider making these dimensions configurable via props or ensuring they match the default CSS dimensions defined inclassName.