Skip to content

Commit

Permalink
make all homepage Links relative
Browse files Browse the repository at this point in the history
  • Loading branch information
cioddi committed Sep 11, 2024
1 parent 8fdc857 commit 73a7f16
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ const BulletList = [

links: [
{
href: "/docs/Getting_Started/Introduction",
href: "./docs/Getting_Started/Introduction",
text: "Introduction",
},
{
href: "/docs/Getting_Started/Installation_&_Setup",
href: "./docs/Getting_Started/Installation_&_Setup",
text: "Installation & Setup",
},
{
href: "/docs/Getting_Started/Quick_Start_Guide",
href: "./docs/Getting_Started/Quick_Start_Guide",
text: "Quick Start Guide",
},
],
Expand All @@ -36,21 +36,21 @@ const BulletList = [
title: "Components",
icon: <GridViewIcon />,
links: [
{ href: "/docs/Components/Basic_Components", text: "Basic Components" },
{ href: "/docs/Components/Layer_Components", text: "Layer Components" },
{ href: "/docs/Components/UI-Components", text: "UI-Components" },
{ href: "/docs/Components/Hooks", text: "Hooks" },
{ href: "/docs/Components/Contexts", text: "Contexts" },
{ href: "./docs/Components/Basic_Components", text: "Basic Components" },
{ href: "./docs/Components/Layer_Components", text: "Layer Components" },
{ href: "./docs/Components/UI-Components", text: "UI-Components" },
{ href: "./docs/Components/Hooks", text: "Hooks" },
{ href: "./docs/Components/Contexts", text: "Contexts" },
],
},
{
title: "Advanced Topics",
icon: <SettingsApplicationsIcon />,
links: [
{ href: "/docs/Advanced_Topics/Configuration", text: "Configuration" },
{ href: "/docs/Advanced_Topics/Architecture", text: "Architecture" },
{ href: "./docs/Advanced_Topics/Configuration", text: "Configuration" },
{ href: "./docs/Advanced_Topics/Architecture", text: "Architecture" },
{
href: "/docs/Advanced_Topics/Data_Integration",
href: "./docs/Advanced_Topics/Data_Integration",
text: "Data Integration",
},
],
Expand All @@ -60,33 +60,33 @@ const BulletList = [
icon: <MapIcon />,
links: [
{
href: "/docs/Examples/Progressive_Web_App",
href: "./docs/Examples/Progressive_Web_App",
text: "Progressive Web App",
},
],
},
{
title: "FAQ",
icon: <QuizIcon />,
links: [{ href: "/docs/FAQ/Common_questions", text: "Common questions" }],
links: [{ href: "./docs/FAQ/Common_questions", text: "Common questions" }],
},
{
title: "Contributing",
icon: <GitHubIcon />,
links: [{ href: "/docs/Contributing/", text: "Contributing" }],
links: [{ href: "./docs/Contributing/", text: "Contributing" }],
},
{
title: "Changelog & Updates",
icon: <LibraryBooksIcon />,
links: [
{ href: "/docs/Changelog_&_Updates/", text: "Changelog & Updates" },
{ href: "./docs/Changelog_&_Updates/", text: "Changelog & Updates" },
],
},
{
title: "Support & Community",
icon: <PeopleIcon />,
links: [
{ href: "/docs/Support_&_Community/", text: "Support & Community" },
{ href: "./docs/Support_&_Community/", text: "Support & Community" },
],
},
// {
Expand Down

0 comments on commit 73a7f16

Please sign in to comment.