diff --git a/components/Header.tsx b/components/Header.tsx index 907d51b..5832ebe 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -38,7 +38,7 @@ export function Header(props: Headerprops) { Features Docs @@ -104,7 +104,7 @@ export function Header(props: Headerprops) { Features Docs diff --git a/components/sections/HeroSection.tsx b/components/sections/HeroSection.tsx index 46cb9bf..aaffbdb 100644 --- a/components/sections/HeroSection.tsx +++ b/components/sections/HeroSection.tsx @@ -49,7 +49,7 @@ export default function HeroSection(props: HeroSectionProps) { single API request. get started ➔ @@ -97,7 +97,7 @@ export default function HeroSection(props: HeroSectionProps) { get started ➔ diff --git a/constants/faqdata.ts b/constants/faqdata.ts index 0cad750..6242047 100644 --- a/constants/faqdata.ts +++ b/constants/faqdata.ts @@ -2,7 +2,7 @@ export const FAQData = [ { question: "How can I install IntelOwl?", answer: - 'That is super fast and straightforward: follow the guide here', + 'That is super fast and straightforward: follow the guide here', }, { question: diff --git a/src/app/docs/page.tsx b/src/app/docs/page.tsx new file mode 100644 index 0000000..34a4381 --- /dev/null +++ b/src/app/docs/page.tsx @@ -0,0 +1,16 @@ +"use client"; + +import { useEffect, useState } from "react"; + +export default function DocsPage() { + const [isReloaded, setIsReloaded] = useState(false); + useEffect(() => { + if (!isReloaded) { + setIsReloaded(true); + window.location.reload(); + } + console.log("ji"); + }, []); + + return