mirror of
https://github.com/MODSetter/SurfSense
synced 2026-06-21 13:44:09 +00:00
7ea840dbb2
- Added multiple new skills to skills-lock.json from the repository `aaron-he-zhu/seo-geo-claude-skills`. - Introduced `fuzzy-search` dependency in package.json for improved search functionality. - Updated pnpm-lock.yaml to include the new `fuzzy-search` package. - Enhanced SEO metadata across various pages, including canonical links and descriptions for better search visibility. - Improved layout and structure of several components, including the homepage and changelog, to enhance user experience.
23 lines
375 B
TypeScript
23 lines
375 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: [
|
|
"/dashboard/",
|
|
"/desktop/",
|
|
"/auth/",
|
|
"/api/",
|
|
"/invite/",
|
|
"/public/",
|
|
"/verify-token/",
|
|
],
|
|
},
|
|
],
|
|
sitemap: "https://surfsense.com/sitemap.xml",
|
|
};
|
|
}
|