Merge version_2 into main #4
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Spectra – Privacy-First Analytics Without Compromise", description: "Beautiful, GDPR-compliant analytics for your website. No cookies, no tracking, just insights. Join thousands of privacy-conscious teams.", keywords: "analytics, privacy, GDPR, cookie-free, web analytics, real-time data, dashboard", metadataBase: new URL("https://spectra.app"),
|
||||
alternates: {
|
||||
canonical: "https://spectra.app"},
|
||||
openGraph: {
|
||||
title: "Spectra – Privacy-First Web Analytics", description: "Premium analytics platform with cookie-free tracking, real-time dashboards, and GDPR compliance built in.", url: "https://spectra.app", siteName: "Spectra", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU7PWl0SA1WtVLZHDttjuUKdEI/a-premium-analytics-dashboard-interface--1772812520920-f3a54131.png", alt: "Spectra Analytics Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Spectra – Privacy-First Web Analytics", description: "Beautiful, GDPR-compliant analytics. No cookies. Real-time insights.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU7PWl0SA1WtVLZHDttjuUKdEI/a-premium-analytics-dashboard-interface--1772812520920-f3a54131.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Spectra - Privacy-First Analytics", description: "Privacy-first analytics without compromise. GDPR-compliant, cookie-free, and beautifully designed."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Zap, Sparkles, Shield } from 'lucide-react';
|
||||
import { Zap, Sparkles, Shield, Lock } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -47,8 +47,8 @@ export default function LandingPage() {
|
||||
<HeroBillboardGallery
|
||||
title="Privacy-First Analytics Without Compromise"
|
||||
description="Track your website visitors, pageviews, sessions, sources, devices, and geography. GDPR-compliant, cookie-free, and beautifully designed."
|
||||
tag="SPECTRA"
|
||||
tagIcon={Zap}
|
||||
tag="Privacy-First"
|
||||
tagIcon={Lock}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
|
||||
Reference in New Issue
Block a user