Add src/app/ai-hr/page.tsx

This commit is contained in:
2026-05-09 14:31:56 +00:00
parent 447e813902
commit 3e78473661

60
src/app/ai-hr/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { BrainCircuit, Users, FileText, BarChart3, Clock, Lock } from "lucide-react";
export default function AIHRPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "AI HR", id: "ai-hr" },
{ name: "AI Accountant", id: "ai-accountant" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Get Started", href: "#contact" }}
/>
<HeroOverlay
title="AI-Powered HR Management"
description="Automate your human resources processes, from recruitment to performance tracking, with our intelligent AI solutions."
tag="HR Automation"
tagIcon={BrainCircuit}
buttons={[{ text: "Get Started", href: "#contact" }]}
/>
<FeatureBorderGlow
title="Key Features"
description="Simplify your operations with these automated tools."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{ icon: Users, title: "Automated Recruitment", description: "AI-driven resume screening and candidate matching to find the best talent faster." },
{ icon: FileText, title: "Onboarding Automation", description: "Digital document processing and personalized onboarding flows for new employees." },
{ icon: BarChart3, title: "Workforce Analytics", description: "Real-time insights into employee productivity, engagement, and attrition rates." },
{ icon: Clock, title: "Smart Scheduling", description: "Intelligent shift planning and time-off request management." },
]}
/>
<ContactCTA title="Ready to Modernize HR?" description="Talk to us about deploying AI HR solutions in your company." />
<FooterBase
logoText="Webild"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "AI HR", href: "/ai-hr" }, { label: "AI Accountant", href: "/ai-accountant" }] }
]}
/>
</ThemeProvider>
);
}