Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-06 17:16:08 +00:00
2 changed files with 21 additions and 4 deletions

View File

@@ -5,7 +5,8 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Spectra - Privacy-First Analytics", description: "Privacy-first analytics without compromise. GDPR-compliant, cookie-free, and beautifully designed."};
title: "Spectra - Privacy-First Analytics", description: "Privacy-first analytics without compromise. GDPR-compliant, cookie-free, and beautifully designed."
};
export default function RootLayout({
children,
@@ -14,6 +15,19 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<script async src="https://cdn.jsdelivr.net/npm/lenis@latest"></script>
<script>
{`
const lenis = new Lenis();
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
`}
</script>
</head>
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -158,19 +158,22 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{
id: "starter", tag: "Starter", price: "$0", period: "/month", description: "Perfect for getting started with privacy-first analytics", button: { text: "Start Free", href: "https://spectra.app/signup" }, featuresTitle: "What's Included:", features: [
id: "starter", tag: "Starter", price: "$0", period: "/month", description: "Perfect for getting started with privacy-first analytics", button: { text: "Start Free", href: "https://spectra.app/signup" },
featuresTitle: "What's Included:", features: [
"Up to 5,000 monthly events", "3 months data retention", "Basic dashboard", "Email support", "GDPR compliant"
]
},
{
id: "pro", tag: "Pro", tagIcon: Sparkles,
price: "$29", period: "/month", description: "For growing businesses needing advanced analytics", button: { text: "Start Free Trial", href: "https://spectra.app/signup?plan=pro" }, featuresTitle: "Everything in Starter, Plus:", features: [
price: "$29", period: "/month", description: "For growing businesses needing advanced analytics", button: { text: "Start Free Trial", href: "https://spectra.app/signup?plan=pro" },
featuresTitle: "Everything in Starter, Plus:", features: [
"Unlimited monthly events", "2 years data retention", "Custom dashboards", "API access", "Real-time alerts", "Priority support"
]
},
{
id: "enterprise", tag: "Enterprise", tagIcon: Shield,
price: "Custom", period: "pricing", description: "For large-scale analytics operations", button: { text: "Contact Sales", href: "https://spectra.app/contact" }, featuresTitle: "Everything in Pro, Plus:", features: [
price: "Custom", period: "pricing", description: "For large-scale analytics operations", button: { text: "Contact Sales", href: "https://spectra.app/contact" },
featuresTitle: "Everything in Pro, Plus:", features: [
"Unlimited data retention", "White-label dashboard", "SSO & advanced security", "Dedicated account manager", "Custom integrations", "SLA guarantee"
]
}