Skip to content

Commit a9db59c

Browse files
author
abrulic
committed
small updates
1 parent 47acc02 commit a9db59c

8 files changed

Lines changed: 11 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
# FIXME uncomment if working with monorepo structure
137137
# workspace_name: docs
138138
app_name: ${{ github.event.repository.name }}-${{ github.event.number }}
139-
use_isolated_workspace: false
139+
use_isolated_workspace: true
140140
env_vars: |
141141
APP_ENV=production
142142
GITHUB_OWNER=${{ github.repository_owner }}

.github/workflows/publish-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
# FIXME uncomment if working with monorepo structure
103103
# workspace_name: docs
104104
app_name: ${{github.event.repository.name}}-${{ github.ref_name }}
105-
use_isolated_workspace: false
105+
use_isolated_workspace: true
106106
env_vars: |
107107
APP_ENV=production
108108
GITHUB_OWNER=${{ github.repository_owner }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Welcome to Forge 42 Documentation Template
1+
# Welcome to Documentation Template
22

33
This template is designed to support a flexible content structure using `.md` and `.mdx` files organized into folders. It enables deeply nested sections and subsections, making it easy to manage complex documentation with a clear and scalable hierarchy.
44

app/routes/documentation-homepage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ export const meta = ({ data }: Route.MetaArgs) => {
1313
return generateMetaFields({
1414
domain,
1515
path: `/${version}/home`,
16-
title: `${title} · React Router Devtools`,
16+
// FIXME change "Docs Template" to your package name
17+
title: `${title} · Documentation Template`,
1718
description,
1819
})
1920
}

app/routes/documentation-layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ export default function DocumentationLayout({ loaderData }: Route.ComponentProps
2323
<div className="block min-h-screen bg-[var(--color-background)] 2xl:container 2xl:mx-auto">
2424
<Header>
2525
<div className="flex items-start gap-3">
26+
{/* FIXME Replace with your Logo */}
2627
<Logo>
27-
<span className="p-0">React Router Devtools</span>
28+
<span className="p-0">Docs Template</span>
2829
</Logo>
2930
</div>
3031
<div className="inline-flex items-center gap-2 xl:gap-3">

app/routes/documentation-page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export const meta = ({ data }: Route.MetaArgs) => {
2020
return generateMetaFields({
2121
domain,
2222
path: fullPath,
23-
title: `${page.title} · React Router Devtools`,
23+
// FIXME change "Docs Template" to your package name
24+
title: `${page.title} · Documentation Template`,
2425
description: page.description,
2526
})
2627
}

content/01-getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Getting Started"
33
summary: "Set up your documentation site"
4-
description: "Step-by-step guide to setting up and running the Forge 42 documentation template."
4+
description: "Step-by-step guide to setting up and running the documentation template."
55
---
66

77
## Prerequisites

content/_index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Forge 42 Documentation Template"
2+
title: "Documentation Template"
33
summary: "Production-ready documentation template"
44
description: "A modern documentation template built with React Router v7, Tailwind v4, and content-collections for seamless MDX-based documentation."
55
---

0 commit comments

Comments
 (0)