7 Commits

Author SHA1 Message Date
9da503abe7 Merge version_3 into main
Merge version_3 into main
2026-03-07 14:35:36 +00:00
40bd0ac176 Update src/app/page.tsx 2026-03-07 14:35:32 +00:00
7d5e79fcbd Merge version_2 into main
Merge version_2 into main
2026-03-07 14:32:28 +00:00
51056237fb Update src/app/page.tsx 2026-03-07 14:32:23 +00:00
758ab11d4a Update src/app/layout.tsx 2026-03-07 14:32:23 +00:00
974b847656 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:30:30 +00:00
f4801d3610 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:29:06 +00:00
2 changed files with 11 additions and 58 deletions

View File

@@ -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>
);
}
}

View File

@@ -221,7 +221,7 @@ export default function HomePage() {
},
{
id: "enterprise", badge: "For Scale", badgeIcon: Crown,
price: "Custom", subtitle: "Volume discounts and white-label options available", features: [
price: "Custom", subtitle: "Volume discounts available typical range $50K$200K annually", features: [
"Everything in Pro", "Dedicated account manager", "Custom AI model training", "White-label platform", "API access", "Dedicated Slack channel", "Quarterly business reviews"],
},
]}
@@ -284,7 +284,7 @@ export default function HomePage() {
tagIcon={Mail}
tagAnimation="slide-up"
title="Stay Ahead in Recruitment Innovation"
description="Get weekly insights on AI-powered hiring trends, industry reports, and exclusive opportunities from TalentFlow's research team."
description="Get exclusive early access to new AI matching features and insider tips used by top Fortune 500 recruiters"
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
inputPlaceholder="your@company.com"
@@ -302,4 +302,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}