File tree 5 files changed +22
-6
lines changed
5 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export function Header(props: Headerprops) {
38
38
Features
39
39
</ Link >
40
40
< Link
41
- href = "https://intelowlproject.github.io /docs/"
41
+ href = "/docs/"
42
42
className = "text-white font-SpaceGrotesk font-light text-center invisible md:visible"
43
43
>
44
44
Docs
@@ -104,7 +104,7 @@ export function Header(props: Headerprops) {
104
104
Features
105
105
</ Link >
106
106
< Link
107
- href = "https://intelowlproject.github.io /docs/"
107
+ href = "/docs/"
108
108
className = "text-white font-SpaceGrotesk font-light text-center hidden md:flex md:justify-center md:flex-row"
109
109
>
110
110
Docs
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default function HeroSection(props: HeroSectionProps) {
49
49
< span className = "text-[#00ADEF]" > single API request.</ span >
50
50
</ h2 >
51
51
< Link
52
- href = { "https://intelowlproject.github.io/ docs//Installation.html " }
52
+ href = { "/ docs/IntelOwl/installation/ " }
53
53
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"
54
54
>
55
55
get started ➔
@@ -97,7 +97,7 @@ export default function HeroSection(props: HeroSectionProps) {
97
97
</ span >
98
98
</ h2 >
99
99
< Link
100
- href = { "https://intelowlproject.github.io/ docs//Installation.html " }
100
+ href = { "/ docs/" }
101
101
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"
102
102
>
103
103
get started ➔
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export const FAQData = [
2
2
{
3
3
question : "How can I install IntelOwl?" ,
4
4
answer :
5
- 'That is super fast and straightforward: follow the guide <a href="https://intelowlproject.github.io/ docs//Installation.html " target="_blank">here</a>' ,
5
+ 'That is super fast and straightforward: follow the guide <a href="/ docs/IntelOwl/installation/ " target="_blank">here</a>' ,
6
6
} ,
7
7
{
8
8
question :
Original file line number Diff line number Diff line change
1
+ "use client" ;
2
+
3
+ import { useEffect , useState } from "react" ;
4
+
5
+ export default function DocsPage ( ) {
6
+ const [ isReloaded , setIsReloaded ] = useState ( false ) ;
7
+ useEffect ( ( ) => {
8
+ if ( ! isReloaded ) {
9
+ setIsReloaded ( true ) ;
10
+ window . location . reload ( ) ;
11
+ }
12
+ console . log ( "ji" ) ;
13
+ } , [ ] ) ;
14
+
15
+ return < div > Loading</ div > ;
16
+ }
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export default function Home() {
64
64
</ span >
65
65
</ a >
66
66
< a
67
- href = "https://intelowlproject.github.io/ docs//Usage.html #analyzers"
67
+ href = "/ docs/IntelOwl/usage/ #analyzers"
68
68
className = "transform transition-transform duration-3 hover:scale-105 inline-flex justify-between items-center py-1 px-1 pr-4 mb-7 text-sm text-gray-700 bg-gray-100 rounded-full dark:bg-gray-800 dark:text-white hover:bg-gray-200 dark:hover:bg-gray-700"
69
69
role = "alert"
70
70
>
You can’t perform that action at this time.
0 commit comments