+
Use cases
diff --git a/apps/web-v2/src/app/(landing)/page.tsx b/apps/web-v2/src/app/(landing)/page.tsx
index 0f264a62..32c47ce3 100644
--- a/apps/web-v2/src/app/(landing)/page.tsx
+++ b/apps/web-v2/src/app/(landing)/page.tsx
@@ -1,16 +1,17 @@
-import Features from "./Features";
import RotatingIcons from "./RotatingIcons";
import Hero from "./Hero";
import Navbar from "./Navbar";
import Cta from "./Cta";
import { Toaster } from "@/components/ui/toaster";
+import Features from "./Features";
export const runtime = "edge";
export default function Home() {
return (
-
+
+
{/* Background gradients */}
@@ -28,6 +29,12 @@ export default function Home() {
style={{ transform: "rotate(-30deg)" }}
/>
+
+
{/* Hero section */}
@@ -36,6 +43,7 @@ export default function Home() {
{/* Features section */}
+
diff --git a/apps/web-v2/src/app/globals.css b/apps/web-v2/src/app/globals.css
index 4dd06ae3..98d57f65 100644
--- a/apps/web-v2/src/app/globals.css
+++ b/apps/web-v2/src/app/globals.css
@@ -82,6 +82,30 @@
}
}
+html {
+ scroll-behavior: smooth;
+}
+
+/* width */
+::-webkit-scrollbar {
+ width: 8px;
+}
+
+/* Track */
+::-webkit-scrollbar-track {
+ background: transparent;
+}
+
+/* Handle */
+::-webkit-scrollbar-thumb {
+ background: #131F2C;
+}
+
+/* Handle on hover */
+::-webkit-scrollbar-thumb:hover {
+ background: #22303d;
+}
+
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(to bottom, transparent, var(--black-bg))