Update layout.tsx

This commit is contained in:
Josh S. 2024-12-03 18:41:39 -05:00 committed by GitHub
parent d23ba96db4
commit 03700a7644
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,8 @@ const geistMono = localFont({
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Skylink Hosting LLC", title: "Skylink Hosting LLC",
description: "Deploy your idea instantly with our VPS, game, and web services, or with our dedicated and colocation services with our optimized premium-blend network.", description:
"Deploy your idea instantly with our VPS, game, and web services, or with our dedicated and colocation services with our optimized premium-blend network.",
}; };
export default function RootLayout({ export default function RootLayout({
@ -25,6 +26,25 @@ export default function RootLayout({
}>) { }>) {
return ( return (
<html lang="en"> <html lang="en">
<head>
{/* Add the Tawk.to Script */}
<script
type="text/javascript"
dangerouslySetInnerHTML={{
__html: `
var Tawk_API = Tawk_API || {}, Tawk_LoadStart = new Date();
(function() {
var s1 = document.createElement("script"), s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = 'https://embed.tawk.to/674f8d3c2480f5b4f5a76749/1ie7bvdph';
s1.charset = 'UTF-8';
s1.setAttribute('crossorigin', '*');
s0.parentNode.insertBefore(s1, s0);
})();
`,
}}
/>
</head>
<body <body
className={`${geistSans.variable} ${geistMono.variable} antialiased`} className={`${geistSans.variable} ${geistMono.variable} antialiased`}
> >