Next.js Discord

Discord Forum

SEO and metadata

Unanswered
Great golden digger wasp posted this in #help-forum
Open in Discord
Great golden digger waspOP
Hey I have a question. How can I change this "site name"? My title tag in metadata is set, but this is still wrong... Can someone help me?

My metadata:
export function generateMetadata({
  title = 'Wassa - Flexibilní a kvalitní výroba obalů',
  description = 'Potřebujete flexibilní a kvalitní vývoj a výrobu obalů? Wassa se specializuje na kartonážní výrobu a poskytuje náhradní plnění. Logisticky zajistíme expedici v ČR, DE, PL a další země EU.',
  keywords = [
    'Výroba kartonů',
    'Prodej kartonů',
    'Kartonová krabice',
    'Kartonový obal',
    'Kartonový box',
    'Přepravní obal',
    'Přepravní box',
    'Kartony Liberec',
    'Wassa',
    'Vývoj obalů',
    'Výroba obalů',
    'Logistické služby',
    'Flexibilní služby',
    'Komplexní služby',
    'Chráněná dílna',
    'Náhradní plnění',
    'Zpracovatelé lepenek',
    'Pracovní místa pro zdravotně znevýhodněné',
    'Kvalitní pracovní prostředí',
    'Přední výrobce obalů',
    'Logistická centra',
    'Kompletace',
    'Mytí průmyslových obalů',
  ],
  icons = '/icon.jpg',
}: {
  title?: string
  description?: string
  keywords?: string[]
  image?: string
  icons?: string
} = {}) {
  return {
    title: {
      default: title,
      template: `%s | ${title}`,
    },
    applicationName: title,
    description,
    keywords,
    openGraph: {
      title,
      description,
      icons,
    },
    icons,
    metadataBase: new URL(BASE_URL),
  }
}

16 Replies

Maybe Google didn't update it yet?
Great golden digger waspOP
I am waiting for 2 weeks already
Check the Google Search Console
It may take a lot
Great golden digger waspOP
I looked there but I couldn't find a setting for this...
check when it says it was updated
or ask an update
Great golden digger waspOP
I've done all of the above, but I was wondering... It's possible that it's because the company had this "name" with the old site, but now that I have it done through Next.js and I have Internationalization done through their documentation, the path / doesn't seem to exist... I can't index it through google... That means I can only index translated i.e. "/en, /cs, /pl, /de"... Could this have something to do with it? If so, can I somehow make it so that just the "home" page will be "/cs"? It'll redirect you immediately elsewhere when you visit "/", but I don't know... What do you think?
All subpages are already indexed by Google
Now that I think about it, you should try the metadata option publisher
@D Trombett Now that I think about it, you should try the metadata option `publisher`
Great golden digger waspOP
done, so now I'm supposed to wait, like, 2-3 days?
actually, it is unknown the time taken by google to update the index. it may take a couple hours or a month. If you request the update in the search console (probably tomorrow) it should be a bit faster
Great golden digger waspOP
Okay, but I cannot request "/" so should I request default lang like "/cs"?
Is this okay to be root?
never had such a situation but yeah I think, or maybe redirect / to /cs
Great golden digger waspOP
It is redirected.. Thank u so much! I will let u know if the problem persists... Now thanks!