Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copywriting #330

Merged
merged 4 commits into from
Aug 16, 2024
Merged
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
3 changes: 1 addition & 2 deletions web/src/lib/components/chat/ChatIntroduction.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,7 @@
<div
class="flex items-center gap-1.5 font-semibold max-sm:text-smd"
>
Data source is currently being indexed. Please visit us
again later. Thank you for your patience.
Your agent will be ready in a few minutes. Please drop your email to be notified.
</div>
<p
class="btn ml-auto flex self-start rounded-full bg-gray-100 p-1 text-xs hover:bg-gray-100 dark:border-gray-600 dark:bg-gray-800 dark:hover:bg-gray-600"
Expand Down
26 changes: 12 additions & 14 deletions web/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import CarbonAdd from "~icons/carbon/add";
import CarbonGithub from "~icons/carbon/logo-github";
import CarbonSettings from "~icons/carbon/settings";

import type { Agent } from "$lib/types/Agent";
import { goto } from "$app/navigation";
import { debounce } from "$lib/utils/debounce";
Expand Down Expand Up @@ -110,10 +109,10 @@
<div class="flex flex-row">
<div>
<div class="flex items-center">
<h1 class="text-2xl font-bold">Marketplace</h1>
<h1 class="text-2xl font-bold">AI Agents for Libraries and SDKs</h1>
</div>
<h3 class="text-gray-500">
Explore the agents in the marketplace made by dev community
Build apps faster with specialized agents at your command.
</h3>
</div>
<button
Expand All @@ -136,7 +135,7 @@
/>
<input
class="h-[50px] w-full bg-transparent pl-7 focus:outline-none"
placeholder="Search agents in the marketplace"
placeholder="Search any library or SDK"
maxlength="150"
type="search"
value={searchValue}
Expand Down Expand Up @@ -195,20 +194,19 @@
<CarbonGithub class="mx-1" />
{formatText(agent.author.source_url, 20)}
</a>
{:else}
<!-- {:else}
<p
class="mt-auto pt-2 text-xs text-gray-400 dark:text-gray-500"
>
Created by <a
By <a
class="hover:underline"
href="https://github.com/{agent.author
.github_id}"
target="_blank"
rel="noreferrer"
href="https://github.com/commanddash"
target="_blank"
rel="noreferrer"
>
{agent.author.name}
CommandDash
</a>
</p>
</p> -->
{/if}
</button>
{/each}
Expand All @@ -218,11 +216,11 @@
showModal = true;
}}
>
<CarbonGithub height="5.5em" width="5.5em" />
<CarbonAdd height="5.5em" width="5.5em" />
<h3
class="mb-2 line-clamp-2 max-w-full break-words text-center text-[.8rem] font-semibold leading-snug sm:text-sm mt-2"
>
Create from github
Create Agent
</h3>
</button>
</div>
Expand Down
Loading