diff --git a/docs/src/app/sc/page.jsx b/docs/src/app/sc/page.jsx new file mode 100644 index 000000000..a9e4abcd2 --- /dev/null +++ b/docs/src/app/sc/page.jsx @@ -0,0 +1,90 @@ +import { Tilt_Warp } from "next/font/google"; +import { cn } from "../../lib/utils"; +import Image from "next/image"; + +const tilt_wrap = Tilt_Warp({ + subsets: ["latin"], + weight: "400", +}); + +export default function ScPage() { + return ( +
+
+
+

+ The Open Source Google Analytics Replacement +

+
+ {/* Rybbit Analytics */} +
+ {/*

+ Next-gen, open source, lightweight, cookieless web & product analytics + for everyone. +

+ +
+ + + + + + +
*/} + +
+ {/* Background gradients - overlapping circles for organic feel */} +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + {/* Iframe container with responsive visibility */} +
+ {/* Remove mobile message and show iframe on all devices */} + +
+
+
+ ); +}