diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index cbba6d5..d10be2f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-