From 5c489c6ec750e38cba5df9588c1888ed1b412c75 Mon Sep 17 00:00:00 2001
From: "[dyad]"
Date: Tue, 20 Jan 2026 16:15:44 +0100
Subject: [PATCH] [dyad] Removed meta keywords section - wrote 3 file(s)
---
src/app/actions.ts | 2 --
src/components/analysis-tab.tsx | 26 --------------------------
src/lib/types.ts | 1 -
3 files changed, 29 deletions(-)
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({
)}
-
-
- Meta Keywords
-
-
- Keywords associated with the page. Note: Most search engines
- no longer use this tag for ranking.
-
-
- {metaData.keywords ? (
-
- {metaData.keywords
- .split(",")
- .map((k) => k.trim())
- .filter(Boolean)
- .map((k, i) => (
-
- {k}
-
- ))}
-
- ) : (
- "Not found"
- )}
-
-
diff --git a/src/lib/types.ts b/src/lib/types.ts
index 76f5a41..5e3ad0b 100644
--- a/src/lib/types.ts
+++ b/src/lib/types.ts
@@ -11,6 +11,5 @@ export interface MetaData {
keywordCount?: number | null;
images?: ImageAltData[] | null;
canonical?: string | null;
- keywords?: string | null;
robots?: string | null;
}
\ No newline at end of file