|
|
|
|
@@ -1,66 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Libre_Baskerville, Inter } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const libreBaskerville = Libre_Baskerville({
|
|
|
|
|
variable: "--font-libre-baskerville",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["400", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "AI Recruitment Platform | TalentFlow | Tech Talent Matching",
|
|
|
|
|
description: "Revolutionary AI-powered recruitment for AI/ML, Robotics, and AR/VR talent. Match exceptional candidates with innovative companies in seconds using advanced neural algorithms.",
|
|
|
|
|
keywords: "AI recruitment, ML engineer hiring, robotics jobs, AR/VR talent, tech recruitment platform, AI hiring, talent matching",
|
|
|
|
|
metadataBase: new URL("https://talentflow.ai"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://talentflow.ai",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "TalentFlow AI - Revolutionary Tech Recruitment",
|
|
|
|
|
description: "AI-native platform connecting top technical talent with innovative companies instantly.",
|
|
|
|
|
type: "website",
|
|
|
|
|
siteName: "TalentFlow AI",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcYfLGy3B6JbXlBKin1PpdiDDe/a-sleek-modern-ai-recruitment-dashboard--1772893677619-cc7b4ff6.png",
|
|
|
|
|
alt: "TalentFlow AI Platform Interface",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "TalentFlow AI - Tech Recruitment Platform",
|
|
|
|
|
description: "AI-powered matching for AI/ML engineers, roboticists, and AR/VR specialists",
|
|
|
|
|
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcYfLGy3B6JbXlBKin1PpdiDDe/a-sleek-modern-ai-recruitment-dashboard--1772893677619-cc7b4ff6.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "TalentFlow AI - AI-Powered Talent Acquisition", description: "Meet exceptional AI/ML engineers, roboticists, and AR/VR specialists instantly. Our AI-native platform matches top talent with forward-thinking companies in seconds, not months."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1428,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|