Update src/app/layout.tsx

This commit is contained in:
2026-03-07 06:07:06 +00:00
parent 3a636fe4e2
commit 9391b10ebb

View File

@@ -1,68 +1,18 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
export const metadata: Metadata = {
title: "Ebliss Infosystems - IT Infrastructure, Cloud Hosting & Security Solutions",
description: "Complete IT infrastructure solutions including refurbished laptops, server setup, firewall security, cloud hosting, and enterprise IT support for businesses across India.",
keywords: "IT hardware sales, refurbished laptops India, server installation, firewall security, cloud hosting, VPS hosting, CCTV installation, networking setup, IT infrastructure, managed IT services",
metadataBase: new URL("https://www.ebliss.com"),
alternates: {
canonical: "https://www.ebliss.com",
},
openGraph: {
title: "Ebliss Infosystems - Complete IT Infrastructure Solutions",
description: "Refurbished laptops, server setup, firewall security, cloud hosting, and comprehensive IT support for modern businesses.",
url: "https://www.ebliss.com",
siteName: "Ebliss Infosystems",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Ebliss Infosystems - IT Infrastructure Solutions",
description: "Complete IT services including hardware, servers, cloud hosting, and network security.",
},
robots: {
index: true,
follow: true,
},
};
title: "Technoswag Technology - IT Infrastructure Solutions", description: "Complete IT infrastructure solutions including refurbished laptops, IT hardware, networking, firewall security, and cloud hosting for businesses across India."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${libreBaskerville.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1430,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}