Update src/app/layout.tsx
This commit is contained in:
@@ -1,58 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { GeistSans } from "geist/font/sans";
|
||||
import { GeistMono } from "geist/font/mono";
|
||||
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 roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "TechForge - Expert IT Software Development & Solutions", description: "Custom software development, cloud architecture, and enterprise security solutions. 250+ projects delivered for industry leaders.", keywords: "software development, IT solutions, cloud architecture, enterprise software, custom development, tech consulting", metadataBase: new URL("https://techforge.dev"),
|
||||
alternates: {
|
||||
canonical: "https://techforge.dev"},
|
||||
openGraph: {
|
||||
title: "TechForge - Expert IT Software Development", description: "Transform your business with innovative software solutions and cutting-edge technology expertise.", url: "https://techforge.dev", siteName: "TechForge", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdxW04ITRV3Kp3hL3FqrduEiMU/a-modern-sleek-software-dashboard-interf-1772936507142-af194830.png", alt: "TechForge Software Development Portfolio"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "TechForge - Expert IT Software Development", description: "Custom software solutions and enterprise technology expertise.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdxW04ITRV3Kp3hL3FqrduEiMU/a-modern-sleek-software-dashboard-interf-1772936507142-af194830.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "TechForge - Expert Software Development", description: "Transform your software vision into reality with cutting-edge IT solutions and custom software development for enterprises and startups."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${GeistSans.variable} ${GeistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user