Skip to content

Commit 94c0764

Browse files
committed
Improve styling for Interactive Tree View
1 parent 5f95d49 commit 94c0764

File tree

3 files changed

+719
-52
lines changed

3 files changed

+719
-52
lines changed

src/app/generator/repo-tree-generator.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,12 @@ export default function RepoProjectStructure() {
388388
</div>
389389
<div className="relative">
390390
<Input
391-
placeholder={`Enter ${repoType === "github" ? "GitHub" : "GitLab"} repository URL`}
391+
// placeholder={`Enter ${repoType === "github" ? "GitHub" : "GitLab"} repository URL`}
392+
placeholder={
393+
repoType === "github"
394+
? "https://github.com/username/repo"
395+
: "https://gitlab.com/username/repo"
396+
}
392397
value={repoUrl}
393398
onChange={handleUrlChange}
394399
className={`h-11 pl-4 pr-10 text-base bg-white dark:bg-gray-800 text-black dark:text-white border-2 rounded-lg shadow-sm transition-colors duration-200 ${

0 commit comments

Comments
 (0)