Skip to content

Commit ca0c88c

Browse files
committed
feat: update log
1 parent 96a2cd3 commit ca0c88c

5 files changed

Lines changed: 37 additions & 5 deletions

File tree

app/globals.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/* ======== GOOGLE FONTS ======== */
2+
3+
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");
4+
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap");
5+
6+
/* ======== NEXTRA THEME OVERRIDES ======== */
7+
8+
:root {
9+
--nextra-primary-hue: 199deg;
10+
--nextra-primary-saturation: 89%;
11+
}
12+
13+
/* ======== BASE STYLES ======== */
14+
15+
body {
16+
font-family: "Plus Jakarta Sans", system-ui, sans-serif;
17+
-webkit-font-smoothing: antialiased;
18+
-moz-osx-font-smoothing: grayscale;
19+
}
20+
21+
code {
22+
font-family: "JetBrains Mono", ui-monospace, monospace;
23+
}
24+
25+
/* ======== REDUCED MOTION ======== */
26+
27+
@media (prefers-reduced-motion: reduce) {
28+
* {
29+
transition-duration: 0.01ms !important;
30+
}
31+
}

app/layout.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ import { Footer, Layout, Navbar } from "nextra-theme-docs";
22
import { Banner, Head } from "nextra/components";
33
import { getPageMap } from "nextra/page-map";
44
import "nextra-theme-docs/style.css";
5+
import "./globals.css";
56
import type { Metadata } from "next";
67
import type { ReactNode } from "react";
78

89
export const metadata: Metadata = {
910
title: {
1011
default: "DojOps Documentation",
11-
template: "%s DojOps Docs",
12+
template: "%s DojOps Docs",
1213
},
1314
description:
14-
"Documentation for DojOps AI DevOps Automation Engine. Generate, validate, and execute infrastructure & CI/CD configurations.",
15+
"Documentation for DojOps AI DevOps Automation Engine. Generate, validate, and execute infrastructure & CI/CD configurations.",
1516
icons: "/dojops-favicon.png",
1617
};
1718

@@ -27,8 +28,8 @@ const navbar = (
2728
<Navbar
2829
logo={
2930
<span style={{ display: "flex", alignItems: "center", gap: "8px" }}>
30-
<img src="/icon.png" alt="DojOps" width={28} height={28} />
31-
<b>DojOps</b>
31+
<img src="/icon.png" alt="DojOps" width={24} height={24} />
32+
<b>DojOps Docs</b>
3233
</span>
3334
}
3435
projectLink="https://github.com/dojops/dojops"

content/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DojOps Documentation
22

3-
Welcome to the **DojOps AI DevOps Automation Engine** documentation. DojOps is an enterprise-grade AI DevOps automation system that generates, validates, and executes infrastructure and CI/CD configurations using LLM providers — with structured output enforcement, sandboxed execution, approval workflows, and hash-chained audit trails.
3+
Welcome to the **DojOps AI DevOps Automation Engine** documentation. DojOps is an enterprise-grade AI DevOps automation system that generates, validates, and executes infrastructure and CI/CD configurations using LLM providers — with structured output enforcement, sandboxed execution, approval workflows, and hash-chained audit trails.
44

55
---
66

public/dojops-favicon.png

-4.55 MB
Loading

public/icon.png

-53.7 KB
Loading

0 commit comments

Comments
 (0)