diff --git a/src/app/actions.ts b/src/app/actions.ts index 4885205..42f7050 100644 --- a/src/app/actions.ts +++ b/src/app/actions.ts @@ -56,7 +56,6 @@ export async function extractMetaData(url: string, keyword?: string) { "No description found"; const image = $('meta[property="og:image"]').attr("content") || null; const canonical = $('link[rel="canonical"]').attr("href") || null; - const keywords = $('meta[name="keywords"]').attr("content") || null; const robots = $('meta[name="robots"]').attr("content") || null; const faqData: FaqItem[] = []; @@ -177,7 +176,6 @@ export async function extractMetaData(url: string, keyword?: string) { description, image, canonical, - keywords, robots, faq: faqData.length > 0 ? faqData : null, schema: schemaData.length > 0 ? schemaData : null, diff --git a/src/components/analysis-tab.tsx b/src/components/analysis-tab.tsx index 0b624f8..6894075 100644 --- a/src/components/analysis-tab.tsx +++ b/src/components/analysis-tab.tsx @@ -293,32 +293,6 @@ export function AnalysisTab({ )}
-- Keywords associated with the page. Note: Most search engines - no longer use this tag for ranking. -
-