Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 51056237fb | |||
| 758ab11d4a | |||
| 974b847656 | |||
| f4801d3610 |
@@ -1,66 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville, Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-libre-baskerville",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AI Recruitment Platform | TalentFlow | Tech Talent Matching",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1428,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -221,7 +221,7 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "enterprise", badge: "For Scale", badgeIcon: Crown,
|
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"],
|
"Everything in Pro", "Dedicated account manager", "Custom AI model training", "White-label platform", "API access", "Dedicated Slack channel", "Quarterly business reviews"],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -302,4 +302,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user