Update src/app/layout.tsx

This commit is contained in:
2026-03-05 06:41:05 +00:00
parent 91b03f2873
commit b5a206d441

View File

@@ -1,44 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Civil Engineering Jobs | CareerBuild Career Platform", description: "Discover your next civil engineering role. Connect with leading construction and infrastructure firms. Free for professionals, trusted by 5,000+ engineers.", keywords: "civil engineering jobs, construction careers, infrastructure jobs, engineer positions, structural engineer jobs", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Civil Engineering Jobs | CareerBuild", description: "Find your next civil engineering opportunity with CareerBuild. Connect with top construction and engineering firms.", url: "https://careerbuild.example.com", siteName: "CareerBuild", type: "website"},
twitter: {
card: "summary_large_image", title: "Civil Engineering Jobs | CareerBuild", description: "Find civil engineering roles that match your expertise. Browse 2,800+ positions from 450+ partner companies."},
};
title: "CareerBuild - Civil Engineering Jobs", description: "Connect with leading construction, infrastructure, and engineering firms. Discover opportunities that match your expertise and career goals in the civil engineering field."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}