Changes to brandcheck.scroll.pub

ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated index.html
index.html
Changed around line 4
-
+
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated style.css
style.css
Changed around line 1
- :root {
- --primary-color: #4a90e2;
- --secondary-color: #333;
- --background-color: #f9f9f9;
- --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- }
-
+ /* General Styles */
- font-family: var(--font-family);
+ font-family: Arial, sans-serif;
+ background-color: #f4f4f9;
- padding: 20px;
- background-color: var(--background-color);
- color: var(--secondary-color);
- line-height: 1.6;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ animation: fadeIn 1s ease-in-out;
- header {
+ .container {
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ width: 100%;
+ max-width: 500px;
- margin-bottom: 40px;
+ animation: slideIn 0.5s ease-in-out;
- color: var(--primary-color);
- font-size: 2.5rem;
- }
-
- p {
- font-size: 1.1rem;
+ color: #333;
+ margin-bottom: 1.5rem;
+ animation: fadeIn 1.5s ease-in-out;
- form {
- max-width: 600px;
- margin: 0 auto 40px;
+ #searchForm {
- gap: 10px;
+ justify-content: center;
+ gap: 0.5rem;
+ animation: fadeIn 2s ease-in-out;
- input[type="text"] {
- flex: 1;
- padding: 10px;
+ #brandName {
+ padding: 0.75rem;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ width: 70%;
- border: 2px solid var(--primary-color);
- border-radius: 5px;
+ transition:
+ border-color 0.3s ease,
+ box-shadow 0.3s ease;
+ }
+
+ #brandName:focus {
+ border-color: #007bff;
+ box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
- padding: 10px 20px;
- font-size: 1rem;
- background-color: var(--primary-color);
+ padding: 0.75rem 1.5rem;
+ background-color: #007bff;
- border-radius: 5px;
+ border-radius: 4px;
+ font-size: 1rem;
+ transition:
+ background-color 0.3s ease,
+ transform 0.2s ease;
- background-color: darken(var(--primary-color), 10%);
+ background-color: #0056b3;
+ transform: scale(1.05);
+ }
+
+ button:active {
+ transform: scale(0.95);
- max-width: 600px;
- margin: 0 auto;
- padding: 20px;
- background-color: white;
- border-radius: 5px;
- box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ margin-top: 1.5rem;
+ text-align: left;
+ animation: fadeIn 1s ease-in-out;
- footer {
- text-align: center;
- margin-top: 40px;
- font-size: 0.9rem;
+ .loading {
+ color: #007bff;
+ font-style: italic;
+ animation: pulse 1.5s infinite;
+ }
+
+ .error {
+ color: #dc3545;
+ animation: shake 0.5s ease-in-out;
+ }
+
+ .result-item {
+ background: #f9f9f9;
+ padding: 1rem;
+ border-radius: 4px;
+ margin-bottom: 0.5rem;
+ border: 1px solid #eee;
+ animation: slideUp 0.5s ease-in-out;
+ }
+
+ .result-item a {
+ color: #007bff;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .result-item a:hover {
+ color: #0056b3;
+ text-decoration: underline;
- @media (max-width: 600px) {
- form {
- flex-direction: column;
+ /* Animations */
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ to {
+ opacity: 1;
+ }
+ }
+
+ @keyframes slideIn {
+ from {
+ transform: translateY(-20px);
+ opacity: 0;
+ }
+ to {
+ transform: translateY(0);
+ opacity: 1;
+ }
+ }
+
+ @keyframes slideUp {
+ from {
+ transform: translateY(20px);
+ opacity: 0;
+ }
+ to {
+ transform: translateY(0);
+ opacity: 1;
+ }
+ }
- button {
- width: 100%;
+ @keyframes pulse {
+ 0% {
+ opacity: 0.6;
- }
+ 50% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0.6;
+ }
+ }
+
+ @keyframes shake {
+ 0% {
+ transform: translateX(0);
+ }
+ 25% {
+ transform: translateX(-5px);
+ }
+ 50% {
+ transform: translateX(5px);
+ }
+ 75% {
+ transform: translateX(-5px);
+ }
+ 100% {
+ transform: translateX(0);
+ }
+ }
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated body.html
body.html
Changed around line 1
-
-
-
-
-
- Brand Finder
-
-
-
-
-

Brand Finder

-
-
- type="text"
- id="brandName"
- placeholder="Enter a brand name"
- required
- />
-
-
-
-
-
-
-
+
+
+
+
+
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated index.html
index.html
Changed around line 1
+
+
+
+
+
+ Brand Finder
+
+
+
+
+

Brand Finder

+
+
+
+
+
+
+
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated script.js
script.js
Changed around line 4: document.getElementById("searchForm").addEventListener("submit", function (e) {
- resultsDiv.innerHTML = `

Searching for "${brandName}"...

`;
+ // Show loading state
+ resultsDiv.innerHTML = `

Searching for "${brandName}"...

`;
- // Use DuckDuckGo Instant Answer API
+ // Fetch results from DuckDuckGo API
- resultsDiv.innerHTML = `

Results for "${brandName}": ${data.AbstractText}

`;
+ // Display results
+ resultsDiv.innerHTML = `
+
+

Results for "${brandName}":

+

${data.AbstractText}

+ ${data.Heading ? `

Source: ${data.Heading}

` : ""}
+ ${data.Image ? `${data.Heading}` : ""}
+
+ `;
- resultsDiv.innerHTML = `

No results found for "${brandName}".

`;
+ // No results found
+ resultsDiv.innerHTML = `

No results found for "${brandName}".

`;
- resultsDiv.innerHTML = "

An error occurred while searching.

";
+ resultsDiv.innerHTML = `

An error occurred while searching. Please try again later.

`;
- resultsDiv.innerHTML = "

Please enter a brand name.

";
+ // No input provided
+ resultsDiv.innerHTML = `

Please enter a brand name.

`;
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated body.html
body.html
Changed around line 4
+
-

Brand Finder

-
-
- type="text"
- id="brandName"
- placeholder="Enter a brand name"
- required
- />
-
-
-
+
+

Brand Finder

+
+
+ type="text"
+ id="brandName"
+ placeholder="Enter a brand name"
+ required
+ />
+
+
+
+
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated body.html
body.html
Changed around line 1
-
-

Branded

-

Discover if a brand name is already in use.

-
-
-
-
- type="text"
- id="brandName"
- placeholder="Enter brand name..."
- aria-label="Brand name"
- required
- />
-
-
-
-
-
-

Simple, fast, and reliable brand name checking.

-
+
+
+
+
+
+ Brand Finder
+
+
+

Brand Finder

+
+
+ type="text"
+ id="brandName"
+ placeholder="Enter a brand name"
+ required
+ />
+
+
+
+
+
+
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated script.js
script.js
Changed around line 1
- document.getElementById('searchForm').addEventListener('submit', function(e) {
+ document.getElementById("searchForm").addEventListener("submit", function (e) {
- const brandName = document.getElementById('brandName').value.trim();
- const resultsDiv = document.getElementById('results');
+ const brandName = document.getElementById("brandName").value.trim();
+ const resultsDiv = document.getElementById("results");
- setTimeout(() => {
- // Simulate search results
- const isAvailable = Math.random() > 0.5;
- resultsDiv.innerHTML = isAvailable
- ? `

"${brandName}" is available!

`
- : `

"${brandName}" is already in use.

`;
- }, 1000);
+
+ // Use DuckDuckGo Instant Answer API
+ fetch(
+ `https://api.duckduckgo.com/?q=${encodeURIComponent(brandName)}&format=json&no_html=1`,
+ )
+ .then((response) => response.json())
+ .then((data) => {
+ if (data.AbstractText) {
+ resultsDiv.innerHTML = `

Results for "${brandName}": ${data.AbstractText}

`;
+ } else {
+ resultsDiv.innerHTML = `

No results found for "${brandName}".

`;
+ }
+ })
+ .catch((error) => {
+ console.error("Error:", error);
+ resultsDiv.innerHTML = "

An error occurred while searching.

";
+ });
- resultsDiv.innerHTML = '

Please enter a brand name.

';
+ resultsDiv.innerHTML = "

Please enter a brand name.

";
- });
+ });
ffff:99.156.178.38
ffff:99.156.178.38
20 days ago
updated body.html
body.html
Changed around line 1
-

BrandCheck

-

Discover if your brand name is already in use.

+

Branded

+

Discover if a brand name is already in use.

-
+
+ type="text"
+ id="brandName"
+ placeholder="Enter brand name..."
+ aria-label="Brand name"
+ required
+ />
-
+
root
root
20 days ago
Initial commit
body.html
Changed around line 1
+
+

BrandCheck

+

Discover if your brand name is already in use.

+
+
+
+
+
+
+
+
+
+

Simple, fast, and reliable brand name checking.

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://brandcheck.scroll.pub
+ metaTags
+ editButton /edit.html
+ title BrandCheck - Find Out If a Brand Name Is In Use
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "f4fa470d-5e0c-4b06-98d5-f095259cf04e",
+ "object": "chat.completion",
+ "created": 1735741646,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nbrandcheck.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://brandcheck.scroll.pub\nmetaTags\neditButton /edit.html\ntitle BrandCheck - Find Out If a Brand Name Is In Use\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

BrandCheck

\n

Discover if your brand name is already in use.

\n
\n
\n
\n \n \n
\n
\n
\n
\n

Simple, fast, and reliable brand name checking.

\n
\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #333;\n --background-color: #f9f9f9;\n --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n margin: 0;\n padding: 20px;\n background-color: var(--background-color);\n color: var(--secondary-color);\n line-height: 1.6;\n}\n\nheader {\n text-align: center;\n margin-bottom: 40px;\n}\n\nh1 {\n color: var(--primary-color);\n font-size: 2.5rem;\n}\n\np {\n font-size: 1.1rem;\n}\n\nform {\n max-width: 600px;\n margin: 0 auto 40px;\n display: flex;\n gap: 10px;\n}\n\ninput[type=\"text\"] {\n flex: 1;\n padding: 10px;\n font-size: 1rem;\n border: 2px solid var(--primary-color);\n border-radius: 5px;\n}\n\nbutton {\n padding: 10px 20px;\n font-size: 1rem;\n background-color: var(--primary-color);\n color: white;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n}\n\nbutton:hover {\n background-color: darken(var(--primary-color), 10%);\n}\n\n#results {\n max-width: 600px;\n margin: 0 auto;\n padding: 20px;\n background-color: white;\n border-radius: 5px;\n box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n}\n\nfooter {\n text-align: center;\n margin-top: 40px;\n font-size: 0.9rem;\n}\n\n@media (max-width: 600px) {\n form {\n flex-direction: column;\n }\n\n button {\n width: 100%;\n }\n}\n---script.js---\ndocument.getElementById('searchForm').addEventListener('submit', function(e) {\n e.preventDefault();\n const brandName = document.getElementById('brandName').value.trim();\n const resultsDiv = document.getElementById('results');\n\n if (brandName) {\n resultsDiv.innerHTML = `

Searching for \"${brandName}\"...

`;\n setTimeout(() => {\n // Simulate search results\n const isAvailable = Math.random() > 0.5;\n resultsDiv.innerHTML = isAvailable \n ? `

\"${brandName}\" is available!

` \n : `

\"${brandName}\" is already in use.

`;\n }, 1000);\n } else {\n resultsDiv.innerHTML = '

Please enter a brand name.

';\n }\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 248,
+ "completion_tokens": 806,
+ "total_tokens": 1054,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 248
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # brandcheck.scroll.pub
+ Website generated by DeepSeek from prompt: fully functional search engine to find out if a brand name is in use
script.js
Changed around line 1
+ document.getElementById('searchForm').addEventListener('submit', function(e) {
+ e.preventDefault();
+ const brandName = document.getElementById('brandName').value.trim();
+ const resultsDiv = document.getElementById('results');
+
+ if (brandName) {
+ resultsDiv.innerHTML = `

Searching for "${brandName}"...

`;
+ setTimeout(() => {
+ // Simulate search results
+ const isAvailable = Math.random() > 0.5;
+ resultsDiv.innerHTML = isAvailable
+ ? `

"${brandName}" is available!

`
+ : `

"${brandName}" is already in use.

`;
+ }, 1000);
+ } else {
+ resultsDiv.innerHTML = '

Please enter a brand name.

';
+ }
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #333;
+ --background-color: #f9f9f9;
+ --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ margin: 0;
+ padding: 20px;
+ background-color: var(--background-color);
+ color: var(--secondary-color);
+ line-height: 1.6;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 40px;
+ }
+
+ h1 {
+ color: var(--primary-color);
+ font-size: 2.5rem;
+ }
+
+ p {
+ font-size: 1.1rem;
+ }
+
+ form {
+ max-width: 600px;
+ margin: 0 auto 40px;
+ display: flex;
+ gap: 10px;
+ }
+
+ input[type="text"] {
+ flex: 1;
+ padding: 10px;
+ font-size: 1rem;
+ border: 2px solid var(--primary-color);
+ border-radius: 5px;
+ }
+
+ button {
+ padding: 10px 20px;
+ font-size: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ }
+
+ button:hover {
+ background-color: darken(var(--primary-color), 10%);
+ }
+
+ #results {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 20px;
+ background-color: white;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ }
+
+ footer {
+ text-align: center;
+ margin-top: 40px;
+ font-size: 0.9rem;
+ }
+
+ @media (max-width: 600px) {
+ form {
+ flex-direction: column;
+ }
+
+ button {
+ width: 100%;
+ }
+ }