Merge version_2 into main #4
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Silknodes - Enterprise Validator Platform for Crypto", description: "Validate cryptocurrencies with enterprise-grade infrastructure. Real-time monitoring, advanced security, and 99.96% uptime. Start validating with Silknodes today.", keywords: "validator, staking, cryptocurrency, blockchain, Ethereum, validation platform, crypto validator", openGraph: {
|
||||
title: "Silknodes - Enterprise Validator Platform", description: "Institutional-grade validator infrastructure for serious crypto validators", siteName: "Silknodes", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaSl5ehYY8ZmsEU5Ii1vC8mquh/a-sophisticated-validator-dashboard-inte-1772829432255-2079011a.png", alt: "Silknodes validator dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Silknodes - Enterprise Validator Platform", description: "Validate with confidence. Enterprise-grade infrastructure for serious validators.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaSl5ehYY8ZmsEU5Ii1vC8mquh/a-sophisticated-validator-dashboard-inte-1772829432255-2079011a.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Silknodes - Enterprise Validator Infrastructure", description: "Enterprise-grade validator infrastructure for blockchain validation with real-time monitoring, advanced security, and seamless reward distribution."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -67,7 +67,7 @@ export default function SilknodesSite() {
|
||||
imageAlt="Silknodes validator dashboard interface"
|
||||
mediaAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{ text: "Start Validating Today", href: "contact" },
|
||||
{ text: "Launch Your Validator", href: "contact" },
|
||||
{ text: "View Documentation", href: "#faq" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user