Skip to content

Commit bb4550b

Browse files
committed
Update documentation and styling for Chronos framework
- Modified the Jekyll build command in the CI workflow for improved compatibility. - Removed unused image references from the configuration file. - Enhanced the index page with clearer descriptions and updated feature highlights. - Added a new navigation entry for YAML agent examples. - Updated custom HTML to preload fonts for better performance. - Revamped CSS for a modern theme, improving typography, layout, and button styles. - Adjusted the hero section and feature grid for a more polished appearance.
1 parent 3174e44 commit bb4550b

File tree

6 files changed

+411
-156
lines changed

6 files changed

+411
-156
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
working-directory: docs
3636

3737
- name: Build with Jekyll
38-
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
38+
run: bundle exec jekyll build
3939
working-directory: docs
4040
env:
4141
JEKYLL_ENV: production

docs/_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ subtitle: "AI Agent Framework"
1313
name: "Chronos"
1414
repository: "spawn08/chronos"
1515

16-
teaser: /assets/images/chronos-og.png
17-
og_image: /assets/images/chronos-og.png
1816
logo: /assets/images/logo.svg
1917

2018
search: true

docs/_data/navigation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ docs:
2424
url: /guides/context-management/
2525
- title: "Multi-Agent Teams"
2626
url: /guides/teams/
27+
- title: "YAML Agent Examples"
28+
url: /guides/yaml-examples/
2729
- title: "StateGraph Runtime"
2830
url: /guides/stategraph/
2931

docs/_includes/head/custom.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
<link rel="stylesheet" href="{{ '/assets/css/custom.css' | relative_url }}">
22
<link rel="icon" type="image/svg+xml" href="{{ '/assets/images/logo.svg' | relative_url }}">
3+
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
4+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
5+
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" onload="this.onload=null;this.rel='stylesheet'">
6+
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap"></noscript>

0 commit comments

Comments
 (0)