Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
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
14 changes: 2 additions & 12 deletions src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,13 @@ import {
BeakerIcon,
DocumentDuplicateIcon,
} from '@heroicons/react/24/outline'
import {
SiGooglecloud,
SiMicrosoftazure,
SiPulumi,
SiTerraform,
} from 'react-icons/si'
import { SiPulumi, SiTerraform } from 'react-icons/si'
import { NavEntry } from './types'
import { NodeReference } from './reference/node'
import { PyReference } from './reference/python'
import { DartReference } from './reference/dart'
import { GoReference } from './reference/go'
import { FaAws, FaSitemap } from 'react-icons/fa'
import { FaSitemap } from 'react-icons/fa'

export const navigation: NavEntry[] = [
{
Expand Down Expand Up @@ -233,17 +228,14 @@ export const navigation: NavEntry[] = [
},
{
title: 'AWS',
icon: FaAws,
href: '/providers/pulumi/aws',
},
{
title: 'Google Cloud',
icon: SiGooglecloud,
href: '/providers/pulumi/gcp',
},
{
title: 'Azure',
icon: SiMicrosoftazure,
href: '/providers/pulumi/azure',
},
],
Expand All @@ -259,12 +251,10 @@ export const navigation: NavEntry[] = [
},
{
title: 'AWS',
icon: FaAws,
href: '/providers/terraform/aws',
},
{
title: 'Google Cloud',
icon: SiGooglecloud,
href: '/providers/terraform/gcp',
},
],
Expand Down
4 changes: 2 additions & 2 deletions src/styles/docsearch.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
--docsearch-emphasis-color: theme('colors.white');
--docsearch-logo-color: theme('colors.zinc.300');
--docsearch-modal-background: theme('colors.gray.800');
--docsearch-modal-shadow: 0 0 0 1px theme('colors.zinc.700'),
theme('boxShadow.xl');
--docsearch-modal-shadow:
0 0 0 1px theme('colors.zinc.700'), theme('boxShadow.xl');
--docsearch-hit-color: theme('colors.zinc.300');
--docsearch-hit-active-color: theme('colors.primary.300');
--docsearch-hit-active-background: rgb(51 65 85 / 0.3);
Expand Down
Loading
Loading