diff --git a/src/App.jsx b/src/App.jsx
index 7df6351..5b9d61a 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -50,7 +50,7 @@ function App() {
return (
-
🚀 Unified SEO Analysis Tool
+
Unified SEO Analysis Tool
Comprehensive metrics + Keyword research + Industry detection + Hookpilot integration
diff --git a/src/components/KeywordForm.jsx b/src/components/KeywordForm.jsx
index 340b031..b598323 100644
--- a/src/components/KeywordForm.jsx
+++ b/src/components/KeywordForm.jsx
@@ -23,7 +23,7 @@ function KeywordForm({ onSearch, loading }) {
competitor4: '',
database: 'us',
displayLimit: 10,
- apiKey: '61b5d6f509d57c3b7671d431ac5d7306'
+ apiKey: ''
})
const handleSubmit = (e) => {
@@ -46,6 +46,11 @@ function KeywordForm({ onSearch, loading }) {
return
}
+ if (!formData.apiKey.trim()) {
+ alert('Please enter your SEMrush API key')
+ return
+ }
+
onSearch({
...formData,
competitors
@@ -177,14 +182,18 @@ function KeywordForm({ onSearch, loading }) {