fix: replace Payload Website Template with Layer & Mesh

This commit is contained in:
jeffrey 2026-03-10 14:15:19 +00:00
parent 1044ff07c6
commit f80966c657
7 changed files with 13 additions and 13 deletions

2
next-env.d.ts vendored
View File

@ -1,6 +1,6 @@
/// <reference types="next" /> /// <reference types="next" />
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts"; import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@ -3,9 +3,9 @@ User-agent: *
Disallow: /admin/* Disallow: /admin/*
# Host # Host
Host: http://localhost:3000 Host: https://usa.layermesh.com
# Sitemaps # Sitemaps
Sitemap: http://localhost:3000/sitemap.xml Sitemap: https://usa.layermesh.com/sitemap.xml
Sitemap: http://localhost:3000/pages-sitemap.xml Sitemap: https://usa.layermesh.com/pages-sitemap.xml
Sitemap: http://localhost:3000/posts-sitemap.xml Sitemap: https://usa.layermesh.com/posts-sitemap.xml

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap><loc>http://localhost:3000/pages-sitemap.xml</loc></sitemap> <sitemap><loc>https://usa.layermesh.com/pages-sitemap.xml</loc></sitemap>
<sitemap><loc>http://localhost:3000/posts-sitemap.xml</loc></sitemap> <sitemap><loc>https://usa.layermesh.com/posts-sitemap.xml</loc></sitemap>
</sitemapindex> </sitemapindex>

View File

@ -86,6 +86,6 @@ export default async function Page({ searchParams: searchParamsPromise }: Args)
export function generateMetadata(): Metadata { export function generateMetadata(): Metadata {
return { return {
title: `Payload Website Template Search`, title: `Layer & Mesh Search`,
} }
} }

View File

@ -27,8 +27,8 @@ export const generateMeta = async (args: {
const ogImage = getImageURL(doc?.meta?.image) const ogImage = getImageURL(doc?.meta?.image)
const title = doc?.meta?.title const title = doc?.meta?.title
? doc?.meta?.title + ' | Payload Website Template' ? doc?.meta?.title + ' | Layer & Mesh'
: 'Payload Website Template' : 'Layer & Mesh'
return { return {
description: doc?.meta?.description, description: doc?.meta?.description,

View File

@ -9,8 +9,8 @@ const defaultOpenGraph: Metadata['openGraph'] = {
url: `${getServerSideURL()}/website-template-OG.webp`, url: `${getServerSideURL()}/website-template-OG.webp`,
}, },
], ],
siteName: 'Payload Website Template', siteName: 'Layer & Mesh',
title: 'Payload Website Template', title: 'Layer & Mesh',
} }
export const mergeOpenGraph = (og?: Metadata['openGraph']): Metadata['openGraph'] => { export const mergeOpenGraph = (og?: Metadata['openGraph']): Metadata['openGraph'] => {

File diff suppressed because one or more lines are too long