-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: loading signup bug, removed email login, added sitemap
- Loading branch information
1 parent
31466ec
commit a90f436
Showing
7 changed files
with
112 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
<url> | ||
<loc>https://basemind.ai/en</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>1.0</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/sign-in</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.9</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/privacy-policy</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.8</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/terms-of-service</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.7</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/support</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.6</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/projects/create</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.5</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/settings</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.4</priority> | ||
</url> | ||
<url> | ||
<loc>https://basemind.ai/en/projects</loc> | ||
<lastmod>2024-01-21</lastmod> | ||
<changefreq>weekly</changefreq> | ||
<priority>0.3</priority> | ||
</url> | ||
</urlset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { MetadataRoute } from 'next'; | ||
|
||
import { Navigation } from '@/constants'; | ||
|
||
const BASE_URL = 'https://basemind.ai'; | ||
const SitemapArray = [ | ||
Navigation.Base, | ||
Navigation.SignIn, | ||
Navigation.PrivacyPolicy, | ||
Navigation.TOS, | ||
Navigation.Support, | ||
Navigation.CreateProject, | ||
Navigation.Settings, | ||
Navigation.Projects, | ||
]; | ||
export default function SiteMap(): MetadataRoute.Sitemap { | ||
return SitemapArray.map((path, index) => { | ||
return { | ||
changeFrequency: 'weekly', | ||
lastModified: new Date(), | ||
priority: 1 - index, | ||
url: BASE_URL + path, | ||
}; | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters