Add src/app/services/page.tsx

This commit is contained in:
2026-04-07 10:24:40 +00:00
parent f5697672a2
commit 58d8ee3dba

76
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,76 @@
"use client";
import ReactLenis from "lenis/react";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FooterCard from "@/components/sections/footer/FooterCard";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Plane, FileText, Instagram, Facebook, Linkedin } from "lucide-react";
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="ProStaff"
button={{ text: "Get Hired", href: "/contact" }}
/>
<FeatureCardOne
tag="Travel Services"
tagIcon={Plane}
title="Comprehensive Travel Assistance"
description="Global logistics and support for international travel and relocation needs."
textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
features={[
{ title: "Corporate Relocation", description: "Full-service support for executives and teams relocating to Miami.", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-walking-airport-terminal_23-2149173748.jpg" },
{ title: "Visa Assistance", description: "Guidance and preparation for business and work visa applications.", imageSrc: "http://img.b2bpic.net/free-photo/passport-boarding-pass-travel-concept_23-2148281179.jpg" },
{ title: "Logistics Planning", description: "Strategic travel and logistics management for long-term projects.", imageSrc: "http://img.b2bpic.net/free-photo/logistics-concept-with-plane_23-2149173719.jpg" }
]}
/>
<FeatureCardOne
tag="Paperwork Services"
tagIcon={FileText}
title="Expert Documentation Support"
description="Precision handling of complex documents to ensure compliance and efficiency."
textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
features={[
{ title: "Compliance Review", description: "Thorough auditing of employment and legal documentation.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-document-contract-signing_23-2148948719.jpg" },
{ title: "Translation Services", description: "Professional translation of official documents for global compliance.", imageSrc: "http://img.b2bpic.net/free-photo/paperwork-with-translator-tools_23-2148461403.jpg" },
{ title: "Notary & Certification", description: "Verified certification of identity and legal documents.", imageSrc: "http://img.b2bpic.net/free-photo/pen-document-office_23-2148461403.jpg" }
]}
/>
<FooterCard
logoText="ProStaff"
copyrightText="© 2025 ProStaff Services USA | 168 SE 1st St #605, Miami, FL 33131"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}