Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10e8e94a75 | |||
| 6f210731d2 | |||
| 75fff00cbe |
@@ -5,7 +5,8 @@ import "./globals.css";
|
|||||||
const inter = Inter({ subsets: ["latin"] });
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -14,6 +15,19 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<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}
|
<body className={inter.className}>{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -158,19 +158,22 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
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"
|
"Up to 5,000 monthly events", "3 months data retention", "Basic dashboard", "Email support", "GDPR compliant"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "pro", tag: "Pro", tagIcon: Sparkles,
|
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"
|
"Unlimited monthly events", "2 years data retention", "Custom dashboards", "API access", "Real-time alerts", "Priority support"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "enterprise", tag: "Enterprise", tagIcon: Shield,
|
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"
|
"Unlimited data retention", "White-label dashboard", "SSO & advanced security", "Dedicated account manager", "Custom integrations", "SLA guarantee"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user