Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-06 11:09:52 +00:00
2 changed files with 9 additions and 64 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Xenon - Secure Privacy Data & Document Storage",
description: "Enterprise-grade document storage with end-to-end encryption. Protect sensitive files with AES-256 security, multi-factor auth, and GDPR/HIPAA compliance.",
keywords: "secure document storage, privacy protection, encrypted storage, data security, GDPR compliant, HIPAA ready, end-to-end encryption",
metadataBase: new URL("https://xenon.io"),
alternates: {
canonical: "https://xenon.io",
},
openGraph: {
title: "Xenon - Your Private Data, Encrypted",
description: "Enterprise-grade secure document storage with military-level encryption and compliance certifications.",
url: "https://xenon.io",
siteName: "Xenon",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZKb1tD5apiUPcUpIwNTqomAIY/clean-user-dashboard-showing-document-ov-1772794804069-612c47d0.png",
alt: "Xenon secure document storage platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "Xenon - Secure Privacy Data Storage",
description: "Enterprise-grade document storage with end-to-end encryption and compliance support.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZKb1tD5apiUPcUpIwNTqomAIY/clean-user-dashboard-showing-document-ov-1772794804069-612c47d0.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Xenon - Secure Document Storage", description: "Store, manage, and secure your most important documents with enterprise-grade encryption."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -84,7 +84,7 @@ export default function HomePage() {
]}
buttons={[
{
text: "Start Free Trial", href: "https://app.xenon.io/signup"
text: "Secure My Documents Free", href: "https://app.xenon.io/signup"
},
{
text: "Learn More", href: "#features"
@@ -490,4 +490,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}