Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 0 additions & 77 deletions GEMINI.md

This file was deleted.

Binary file modified api/__pycache__/ai.cpython-313.pyc
Binary file not shown.
Binary file modified api/__pycache__/scanner.cpython-313.pyc
Binary file not shown.
6 changes: 3 additions & 3 deletions src/components/DomainInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function DomainInput() {

return (
<form onSubmit={handleScan} className="w-full max-w-2xl mx-auto space-y-6">
<div className="flex flex-col sm:flex-row gap-4">
<div className="flex flex-col sm:flex-row gap-3 sm:gap-4">
<Input
type="text"
placeholder="Enter target domain (e.g., example.com)"
Expand All @@ -81,11 +81,11 @@ export function DomainInput() {
>
{isScanning ? (
<>
<Loader2 className="w-5 h-5 mr-2 animate-spin" />
<Loader2 className="w-4 h-4 sm:w-5 sm:h-5 mr-2 animate-spin" />
Scanning...
</>
) : (
"Scan Now"
"Run Security Scan"
)}
</Button>
</div>
Expand Down