Skip to content

Commit 9e5c870

Browse files
authored
Merge pull request #74 from greedy-wudpeckr/fix/installation-link-redirect
fix: remove trailing slash from installation URLs to prevent redirect
2 parents 2a1ae4e + 4d8a94f commit 9e5c870

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/sections/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function HeroSection(props: HeroSectionProps) {
4949
<span className="text-[#00ADEF]">single API request.</span>
5050
</h2>
5151
<Link
52-
href="https://intelowlproject.github.io/docs/IntelOwl/installation/"
52+
href="https://intelowlproject.github.io/docs/IntelOwl/installation"
5353
className=" transform transition-transform duration-3 hover:scale-110 btn bg-[#00ADEE] hover:bg-blue-700 text-white py-2 mb-12 px-4 text-sm rounded w-32 h-10 mt-8 font-SpaceGrotesk text-center"
5454
>
5555
get started ➔
@@ -97,7 +97,7 @@ export default function HeroSection(props: HeroSectionProps) {
9797
</span>
9898
</h2>
9999
<Link
100-
href="https://intelowlproject.github.io/docs/IntelOwl/installation/"
100+
href="https://intelowlproject.github.io/docs/IntelOwl/installation"
101101
className="transform transition-transform duration-3 hover:scale-110 btn bg-[#00ADEE] hover:bg-blue-700 text-white py-2 px-4 rounded w-36 h-10 mt-16 font-SpaceGrotesk text-center"
102102
>
103103
get started ➔

constants/faqdata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export const FAQData = [
22
{
33
question: "How can I install IntelOwl?",
44
answer:
5-
'That is super fast and straightforward: follow the guide <a href="https://intelowlproject.github.io/docs/IntelOwl/installation/" target="_blank">here</a>',
5+
'That is super fast and straightforward: follow the guide <a href="https://intelowlproject.github.io/docs/IntelOwl/installation" target="_blank">here</a>',
66
},
77
{
88
question:

0 commit comments

Comments
 (0)