Skip to content

Commit

Permalink
fix: Cleaning up docs bugs (#3856)
Browse files Browse the repository at this point in the history
* fix: Fixing code fence title for overview

* fix: Use light and dark logos for opposing themes

* fix: Don't use relative asset paths
  • Loading branch information
yhakbar authored Feb 7, 2025
1 parent 7c9f208 commit c040e19
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs-starlight/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export default defineConfig({
starlight({
title: 'Terragrunt',
logo: {
src: '/src/assets/logo.svg',
dark: '/src/assets/logo-light.svg',
light: '/src/assets/logo-dark.svg',
},
social: {
github: 'https://github.com/gruntwork-io/terragrunt',
Expand Down
9 changes: 9 additions & 0 deletions docs-starlight/src/assets/logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ If you don't have an AWS account, you can either sign up for a free tier account
Here is a typical `terragrunt.hcl` file you might find in a Terragrunt project\*:

```hcl
# terragrunt.hcl
# Configure the remote backend
remote_state {
backend = "s3"
Expand Down
3 changes: 2 additions & 1 deletion docs-starlight/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ template: splash
hero:
tagline: Flexible orchestrator to scale IaC.
image:
file: ../../assets/logo.svg
dark: /src/assets/logo-light.svg
light: /src/assets/logo-dark.svg
actions:
- text: Quick Start
link: /docs/getting-started/quick-start
Expand Down

0 comments on commit c040e19

Please sign in to comment.