Skip to content

Commit 590bc3c

Browse files
committed
branding: add cropped project icon
1 parent ec7ec8c commit 590bc3c

File tree

8 files changed

+15
-8
lines changed

8 files changed

+15
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ PublishScripts/
198198
*.snupkg
199199
# The packages folder can be ignored because of Package Restore
200200
**/[Pp]ackages/*
201+
assets/generated/
201202
# except build/, which is used as an MSBuild target.
202203
!**/[Pp]ackages/build/
203204
# Uncomment if necessary however generally it will be regenerated when needed

YCode.CLI/YCode.CLI.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<Description>YCode is an AI-powered coding agent that operates inside your repository. It provides intelligent code assistance, file operations, and multi-step task management.</Description>
1717
<PackageTags>ai;coding-agent;cli;dotnet-tool;developer-tools</PackageTags>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
19+
<PackageIcon>icon.png</PackageIcon>
1920
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2021
<PackageProjectUrl>https://github.com/ycode-lin/YCode.CLI</PackageProjectUrl>
2122
<RepositoryUrl>https://github.com/ycode-lin/YCode.CLI</RepositoryUrl>
@@ -35,6 +36,7 @@
3536

3637
<ItemGroup>
3738
<None Include="../README.md" Pack="true" PackagePath="\" />
39+
<None Include="icon.png" Pack="true" PackagePath="\" />
3840
</ItemGroup>
3941

4042
</Project>

YCode.CLI/icon.png

213 KB
Loading

docs/assets/favicon-64.png

5.05 KB
Loading

docs/assets/icon-256.png

57 KB
Loading

docs/assets/site.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,15 @@ code {
102102
background: linear-gradient(160deg, rgba(255, 250, 241, 0.9), rgba(255, 244, 226, 0.85));
103103
}
104104

105+
.hero-logo {
106+
display: block;
107+
width: 92px;
108+
height: 92px;
109+
margin-bottom: 12px;
110+
border-radius: 22px;
111+
box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
112+
}
113+
105114
.eyebrow,
106115
.section-kicker,
107116
.panel-topline,

docs/favicon.svg

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<meta name="theme-color" content="#111111">
1212
<link rel="preconnect" href="https://fonts.googleapis.com">
1313
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
14-
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
15-
<link rel="shortcut icon" href="./favicon.svg">
14+
<link rel="icon" type="image/png" sizes="64x64" href="./assets/favicon-64.png">
15+
<link rel="apple-touch-icon" href="./assets/icon-256.png">
1616
<link
1717
href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap"
1818
rel="stylesheet"
@@ -26,6 +26,7 @@
2626

2727
<header class="hero">
2828
<div class="hero-copy">
29+
<img class="hero-logo" src="./assets/icon-256.png" alt="YCode CLI icon">
2930
<p class="eyebrow">Repository-native coding agent</p>
3031
<h1>YCode CLI</h1>
3132
<p class="hero-text">

0 commit comments

Comments
 (0)