Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">

# codename goose
# goose

_a local, extensible, open source AI agent that automates engineering tasks_

Expand Down
4 changes: 2 additions & 2 deletions documentation/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const inkeepIntegrationId = process.env.INKEEP_INTEGRATION_ID;
const inkeepOrgId = process.env.INKEEP_ORG_ID;

const config: Config = {
title: "codename goose",
title: "goose",
tagline:
"your local AI agent, automating engineering tasks seamlessly.",
"your local AI agent, automating engineering tasks seamlessly",
favicon: "img/favicon.ico",

// Set the production url of your site here
Expand Down
20 changes: 20 additions & 0 deletions documentation/src/components/GooseLogo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { useColorMode } from '@docusaurus/theme-common';

export const GooseLogo = (props: { className?: string }) => {
const { colorMode } = useColorMode();

const logoSrc = colorMode === 'dark'
? 'img/goose-logo-white.png'
: 'img/goose-logo-black.png';

const logoAlt = 'goose logo';

return (
<img
src={logoSrc}
alt={logoAlt}
className={props.className}
style={{ height: 'auto', maxWidth: '100%' }}
/>
);
};
7 changes: 4 additions & 3 deletions documentation/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,10 @@ html {
padding-top: 24px;
}

.hero--logo svg {
height: 220px;
width: 220px;
.hero--logo {
display: 'flex';
justify-content: 'center';
margin-bottom: '1rem'
}

.pill-button {
Expand Down
7 changes: 3 additions & 4 deletions documentation/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Layout from "@theme/Layout";
import HomepageFeatures from "@site/src/components/HomepageFeatures";

import styles from "./index.module.css";
import { GooseWordmark } from "../components/gooseWordmark";
import { GooseLogo } from "../components/GooseLogo";

function HomepageHeader() {
const { siteConfig } = useDocusaurusContext();
Expand All @@ -14,7 +14,7 @@ function HomepageHeader() {
<div className={styles.wrapper}>
<div className={styles.textColumn}>
<div className="hero--logo">
<GooseWordmark />
<GooseLogo />
</div>
<p className={styles.subtitle}>{siteConfig.tagline}</p>
<Link className="button button--primary button--lg" to="docs/getting-started/installation">
Expand All @@ -38,9 +38,8 @@ function HomepageHeader() {


export default function Home(): ReactNode {
const { siteConfig } = useDocusaurusContext();
return (
<Layout title={`${siteConfig.title}`} description="Your open source AI agent, automating engineering tasks seamlessly.">
<Layout description="your open source AI agent, automating engineering tasks seamlessly">
<HomepageHeader />
<main>
<HomepageFeatures />
Expand Down
Binary file added documentation/static/img/goose-logo-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documentation/static/img/goose-logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading