Skip to content
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
4 changes: 2 additions & 2 deletions blog/google-backlinks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ date: 2025-05-30

---


 <!-- truncate -->
Google’s algorithms have been evolving for many years. Still, backlinks have always been a factor that marketers have looked at and are continually altering to boost a website’s search engine rankings. You’ve certainly heard a lot about backlinks from all of these digital marketers, but you don’t really understand what they are.

 <!-- truncate -->

---


Expand Down
38 changes: 20 additions & 18 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,11 @@ const config: Config = {
},
],
},
{
type: "search",
position: "right",
},
// Search disabled until Algolia is properly configured
// {
// type: "search",
// position: "right",
// },
{
type: "html",
position: "right",
Expand All @@ -223,20 +224,21 @@ const config: Config = {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
algolia: {
appId: "YOUR_APP_ID",
apiKey: "YOUR_SEARCH_API_KEY",
indexName: "YOUR_INDEX_NAME",
contextualSearch: true,
externalUrlRegex: "external\\.com|domain\\.com",
replaceSearchResultPathname: {
from: "/docs/",
to: "/",
},
searchParameters: {},
searchPagePath: "search",
insights: false,
},
// Disable Algolia search until properly configured
// algolia: {
// appId: "YOUR_APP_ID",
// apiKey: "YOUR_SEARCH_API_KEY",
Copy link

Copilot AI Oct 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a trailing space after the API key comment that should be removed for consistency.

Suggested change
// apiKey: "YOUR_SEARCH_API_KEY",
// apiKey: "YOUR_SEARCH_API_KEY",

Copilot uses AI. Check for mistakes.

// indexName: "YOUR_INDEX_NAME",
// contextualSearch: true,
// externalUrlRegex: "external\\.com|domain\\.com",
// replaceSearchResultPathname: {
// from: "/docs/",
// to: "/",
// },
// searchParameters: {},
// searchPagePath: "search",
// insights: false,
// },
} satisfies Preset.ThemeConfig,

markdown: {
Expand Down
9 changes: 5 additions & 4 deletions src/theme/Navbar/Content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import {
} from '@docusaurus/theme-common/internal';
import NavbarItem, {type Props as NavbarItemConfig} from '@theme/NavbarItem';
import NavbarColorModeToggle from '@theme/Navbar/ColorModeToggle';
import SearchBar from '@theme/SearchBar';
// import SearchBar from '@theme/SearchBar';
import NavbarMobileSidebarToggle from '@theme/Navbar/MobileSidebar/Toggle';
import NavbarLogo from '@theme/Navbar/Logo';
import NavbarSearch from '@theme/Navbar/Search';
// import NavbarSearch from '@theme/Navbar/Search';



Expand Down Expand Up @@ -79,11 +79,12 @@ export default function NavbarContent(): ReactNode {
<>
<NavbarItems items={rightItems} />
<NavbarColorModeToggle />
{!searchBarItem && (
{/* Search component disabled */}
{/* {!searchBarItem && (
<NavbarSearch>
<SearchBar />
</NavbarSearch>
)}
)} */}
</>
}
/>
Expand Down
Loading