Compare commits

...

2 commits

Author SHA1 Message Date
f6c78112ce refactor: fix ESLint warning about a missing dependency for useEffect hooks in analytics component
Some checks failed
Deploy Next.js application / deploy (push) Failing after 10m4s
2024-09-19 19:41:25 +02:00
75eb00a901 fix: change the heading and the text below it in the hero section 2024-09-19 19:38:23 +02:00
2 changed files with 11 additions and 7 deletions

View file

@ -65,16 +65,20 @@ const Hero = () => {
</AnimatedGradientText> </AnimatedGradientText>
<main className="text-5xl md:text-6xl font-bold"> <main className="text-5xl md:text-6xl font-bold">
<h1 className="inline custom-title"> <h1 className="inline custom-title">
Host&nbsp;with{" "}
<span className="text-transparent bg-gradient-to-r from-green-300 to-primary bg-clip-text"> <span className="text-transparent bg-gradient-to-r from-green-300 to-primary bg-clip-text">
Simplify reliability
</span>{" "} </span>
your server logic performance , scale&nbsp;with{" "}
<span className="text-transparent bg-gradient-to-r from-green-300 to-primary bg-clip-text">
ease
</span>
</h1> </h1>
</main> </main>
<p className="text-lg text-muted-foreground md:w-10/12 mx-auto lg:mx-0"> <p className="text-lg text-muted-foreground md:w-10/12 mx-auto lg:mx-0">
The SVR.JS web server allows you to optimize your server-side Host reliably and securely, and scale effortlessly with SVR.JS, an
operations, ensuring performance and efficiency in a simple, open-source and configurable web server running on Node.JS that&apos;s
user-friendly package. designed to handle high loads.
</p> </p>
<div className="relative mx-auto lg:mx-0 flex gap-2 flex-col-reverse lg:flex-row justify-start items-center w-fit"> <div className="relative mx-auto lg:mx-0 flex gap-2 flex-col-reverse lg:flex-row justify-start items-center w-fit">
<Button <Button

View file

@ -44,7 +44,7 @@ function AnalyticsInternal(props: { pagesRouter?: boolean }) {
g.src = u + "matomo.js"; g.src = u + "matomo.js";
(s.parentNode as ParentNode).insertBefore(g, s); (s.parentNode as ParentNode).insertBefore(g, s);
})(); })();
}, [pathname, searchParams]); }, [pathname, searchParams, props.pagesRouter]);
return null; return null;
} }