diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8df00d..3831110 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,33 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/ServiceWrapper"; +import { Tag } from "@/components/ui/tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "NextHire | Premium Recruitment Agency in Australia", description: "Australia's leading recruitment agency connecting top talent with industry leaders. AI-powered matching, expert recruiters, and 90-day placement guarantee.", keywords: "recruitment agency Australia, talent acquisition, staffing solutions, executive search, job placement", metadataBase: new URL("https://nexthire.au"), - alternates: { - canonical: "https://nexthire.au"}, - openGraph: { - title: "NextHire | Find Your Perfect Talent Match", description: "Premium recruitment agency in Australia. Connect with top-tier candidates and transform your hiring process.", url: "https://nexthire.au", siteName: "NextHire", type: "website", images: [ - { - url: "/placeholders/placeholder1.webp", alt: "NextHire Recruitment Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "NextHire | Premium Recruitment Solutions", description: "Find top talent with NextHire's AI-powered matching and expert recruiters in Australia.", images: ["/placeholders/placeholder1.webp"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "NextHire | Premium Recruitment Solutions", description: "Find your perfect talent match with NextHire. AI-powered recruitment matching for top-tier candidates and leading companies."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +