Skip to content

Commit 0561c60

Browse files
committed
chore: bobby and logo
1 parent 7677f64 commit 0561c60

7 files changed

Lines changed: 50 additions & 3 deletions

File tree

README.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
# DevProc
1+
<p align="center">
2+
<img src="./assets/devproc_logo.png" alt="DevProc Logo" width="400">
3+
</p>
24

3-
A terminal UI application for managing your local development environment - hot reload servers, Docker containers, and background workers in one unified interface.
5+
<p align="center">
6+
<strong>A terminal UI application for managing your local development environment</strong><br>
7+
Hot reload servers, Docker containers, and background workers in one unified interface.
8+
</p>
49

5-
![DevProc Screenshot](https://raw.githubusercontent.com/captjt/devproc/master/screenshot.png)
10+
<p align="center">
11+
<a href="https://github.com/captjt/devproc/releases"><img src="https://img.shields.io/github/v/release/captjt/devproc" alt="Release"></a>
12+
<a href="https://github.com/captjt/devproc/blob/main/LICENSE"><img src="https://img.shields.io/github/license/captjt/devproc" alt="License"></a>
13+
<a href="https://github.com/captjt/devproc/stargazers"><img src="https://img.shields.io/github/stars/captjt/devproc" alt="Stars"></a>
14+
</p>
15+
16+
---
17+
18+
![DevProc Screenshot](./assets/screenshot.png)
619

720
## Features
821

@@ -409,6 +422,16 @@ devproc completions fish > ~/.config/fish/completions/devproc.fish
409422

410423
- [Bun](https://bun.sh) >= 1.0
411424

425+
---
426+
427+
<p align="center">
428+
<img src="./assets/bobby.png" alt="Bobby - DevProc Mascot">
429+
</p>
430+
431+
<p align="center">
432+
<em>Meet Bobby, the DevProc mascot. He keeps your processes running smoothly.</em>
433+
</p>
434+
412435
## License
413436

414437
MIT

assets/bobby_borderlands.png

6.79 MB
Loading

assets/devproc_logo.png

4.36 MB
Loading
File renamed without changes.

docs/src/assets/bobby.png

6.79 MB
Loading

docs/src/assets/devproc_logo.png

4.36 MB
Loading

docs/src/content/docs/index.mdx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ title: DevProc
33
description: A terminal UI application for managing your local development environment
44
template: splash
55
hero:
6+
image:
7+
file: ../../assets/devproc_logo.png
8+
alt: DevProc Logo
69
tagline: Hot reload servers, Docker containers, and background workers in one unified interface.
710
actions:
811
- text: Get Started
@@ -15,6 +18,8 @@ hero:
1518
---
1619

1720
import { Card, CardGrid } from "@astrojs/starlight/components"
21+
import { Image } from "astro:assets"
22+
import bobby from "../../assets/bobby.png"
1823

1924
![DevProc terminal UI](../../assets/screenshot.png)
2025

@@ -40,3 +45,22 @@ import { Card, CardGrid } from "@astrojs/starlight/components"
4045
Fast navigation with vim-style keybindings. Everything accessible without leaving the keyboard.
4146
</Card>
4247
</CardGrid>
48+
49+
---
50+
51+
<div class="bobby-section">
52+
<Image src={bobby} alt="Bobby - DevProc Mascot" />
53+
<p>
54+
<em>Meet Bobby, the DevProc mascot. He keeps your processes running smoothly.</em>
55+
</p>
56+
</div>
57+
58+
<style>{`
59+
.bobby-section {
60+
text-align: center;
61+
margin-top: 2rem;
62+
}
63+
.bobby-section img {
64+
margin: 0 auto;
65+
}
66+
`}</style>

0 commit comments

Comments
 (0)