hiring pages added and contact no. updated at gloabal offices
This commit is contained in:
38
App.tsx
38
App.tsx
@@ -164,6 +164,24 @@ import { AmbleProject } from "./pages/AmbleProject";
|
||||
import { AmozProject } from "./pages/AmozProject";
|
||||
import { SimpliTendProject } from "./pages/SimpliTendProject";
|
||||
import { CaseStudyComingSoon } from "./pages/CaseStudyComingSoon";
|
||||
import { HireiOSAppDevelopers } from "./pages/HireiOSAppDevelopers";
|
||||
import { HireAndroidAppDevelopers } from "./pages/HireAndroidAppDevelopers";
|
||||
import { HireCrossPlatformDevelopers } from "./pages/HireCrossPlatformDevelopers";
|
||||
import { HireNativeAppDevelopers } from "./pages/HireNativeAppDevelopers";
|
||||
import { HirePWADevelopers } from "./pages/HirePWADevelopers";
|
||||
import { HireWearableAppDevelopers } from "./pages/HireWearableAppDevelopers";
|
||||
import { HireCustomWebAppDevelopers } from "./pages/HireCustomWebAppDevelopers";
|
||||
import { HireSaaSProductDevelopers } from "./pages/HireSaaSProductDevelopers";
|
||||
import { HireEcommercePlatformDevelopers } from "./pages/HireEcommercePlatformDevelopers";
|
||||
import { HireAdminPanelDevelopers } from "./pages/HireAdminPanelDevelopers";
|
||||
import { HireAPIBackendDevelopers } from "./pages/HireAPIBackendDevelopers";
|
||||
import { HireEnterpriseSoftwareDevelopers } from "./pages/HireEnterpriseSoftwareDevelopers";
|
||||
import { HireSystemArchitectureDevOpsDevelopers } from "./pages/HireSystemArchitectureDevOpsDevelopers";
|
||||
import { HireProductModernizationDevelopers } from "./pages/HireProductModernizationDevelopers";
|
||||
import { HireThirdPartyIntegrationsDevelopers } from "./pages/HireThirdPartyIntegrationsDevelopers";
|
||||
import { HireClickablePrototypesDevelopers } from "./pages/HireClickablePrototypesDevelopers";
|
||||
import { HireDesignThinkingWorkshopsDevelopers } from "./pages/HireDesignThinkingWorkshopsDevelopers";
|
||||
import { HireUserResearchTestingDevelopers } from "./pages/HireUserResearchTestingDevelopers";
|
||||
|
||||
|
||||
// Create a global navigation context
|
||||
@@ -699,6 +717,26 @@ export default function App() {
|
||||
"/resources/whitepapers-insights": WhitepapersInsights,
|
||||
"/resources/faqs": FAQs,
|
||||
|
||||
// New hire pages
|
||||
"/hire-talent/ios-app-developers": HireiOSAppDevelopers,
|
||||
"/hire-talent/android-app-developers": HireAndroidAppDevelopers,
|
||||
"/hire-talent/cross-platform-developers": HireCrossPlatformDevelopers,
|
||||
"/hire-talent/native-app-developers": HireNativeAppDevelopers,
|
||||
"/hire-talent/pwa-developers": HirePWADevelopers,
|
||||
"/hire-talent/wearable-app-developers": HireWearableAppDevelopers,
|
||||
"/hire-talent/custom-web-app-developers": HireCustomWebAppDevelopers,
|
||||
"/hire-talent/saas-product-developers": HireSaaSProductDevelopers,
|
||||
"/hire-talent/ecommerce-platform-developers": HireEcommercePlatformDevelopers,
|
||||
"/hire-talent/admin-panel-developers": HireAdminPanelDevelopers,
|
||||
"/hire-talent/api-backend-developers": HireAPIBackendDevelopers,
|
||||
"/hire-talent/enterprise-software-developers": HireEnterpriseSoftwareDevelopers,
|
||||
"/hire-talent/system-architecture-developers": HireSystemArchitectureDevOpsDevelopers,
|
||||
"/hire-talent/third-party-integration-developers": HireThirdPartyIntegrationsDevelopers,
|
||||
"/hire-talent/product-modernization-developers": HireProductModernizationDevelopers,
|
||||
"/hire-talent/clickable-prototypes-developers": HireClickablePrototypesDevelopers,
|
||||
"/hire-talent/design-thinking-workshops-developers": HireDesignThinkingWorkshopsDevelopers,
|
||||
"/hire-talent/user-research-testing-developers": HireUserResearchTestingDevelopers,
|
||||
|
||||
//Comming Soon / Placeholder Pages
|
||||
"/comming-soon": () => <CaseStudyComingSoon projectTitle="Coming Soon Project" />,
|
||||
|
||||
|
||||
@@ -1,13 +1,21 @@
|
||||
import React from "react";
|
||||
import { motion } from "framer-motion";
|
||||
import { ImageWithFallback } from "./figma/ImageWithFallback";
|
||||
// import successMetricsImage from 'figma:asset/619c58bb9b76889672d43420adc0dd6ef9ef21f6.png';
|
||||
|
||||
const successMetricsImage =
|
||||
"https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=400&h=300&fit=crop&auto=format";
|
||||
|
||||
const AppSuccessMetrics = () => {
|
||||
const metrics = [
|
||||
type Metric = {
|
||||
value: string;
|
||||
label: string;
|
||||
description: string;
|
||||
};
|
||||
|
||||
interface AppSuccessMetricsProps {
|
||||
metrics?: Metric[]; // optional so we can have a fallback
|
||||
}
|
||||
|
||||
const defaultMetrics: Metric[] = [
|
||||
{
|
||||
value: "75+",
|
||||
label: "App Developed",
|
||||
@@ -23,7 +31,10 @@ const AppSuccessMetrics = () => {
|
||||
label: "App downloads",
|
||||
description: "Total downloads across all platforms",
|
||||
},
|
||||
];
|
||||
];
|
||||
|
||||
const AppSuccessMetrics: React.FC<AppSuccessMetricsProps> = ({ metrics }) => {
|
||||
const finalMetrics = metrics ?? defaultMetrics;
|
||||
|
||||
return (
|
||||
<section className="py-20 lg:py-32 bg-black relative overflow-hidden">
|
||||
@@ -50,7 +61,6 @@ const AppSuccessMetrics = () => {
|
||||
|
||||
{/* Main Visual Section */}
|
||||
<div className="relative">
|
||||
{/* iPhone Mockups Display */}
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 50 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
@@ -75,7 +85,7 @@ const AppSuccessMetrics = () => {
|
||||
viewport={{ once: true }}
|
||||
className="grid grid-cols-1 md:grid-cols-3 gap-12 max-w-4xl mx-auto"
|
||||
>
|
||||
{metrics.map((metric, index) => (
|
||||
{finalMetrics.map((metric, index) => (
|
||||
<motion.div
|
||||
key={index}
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
@@ -87,19 +97,14 @@ const AppSuccessMetrics = () => {
|
||||
viewport={{ once: true }}
|
||||
className="text-center group"
|
||||
>
|
||||
{/* Large Metric Number */}
|
||||
<div className="mb-4">
|
||||
<span className="text-6xl lg:text-7xl font-bold text-white group-hover:text-accent transition-colors duration-300">
|
||||
{metric.value}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{/* Metric Label */}
|
||||
<h3 className="text-lg lg:text-xl font-semibold text-gray-300 mb-2">
|
||||
{metric.label}
|
||||
</h3>
|
||||
|
||||
{/* Metric Description */}
|
||||
<p className="text-sm text-gray-400 leading-relaxed">
|
||||
{metric.description}
|
||||
</p>
|
||||
@@ -127,7 +132,6 @@ const AppSuccessMetrics = () => {
|
||||
|
||||
{/* Background Decorative Elements */}
|
||||
<div className="absolute inset-0 pointer-events-none overflow-hidden">
|
||||
{/* Subtle gradient orbs for depth */}
|
||||
<div className="absolute top-20 left-10 w-80 h-80 bg-accent/5 rounded-full blur-3xl"></div>
|
||||
<div className="absolute bottom-20 right-10 w-80 h-80 bg-blue-500/5 rounded-full blur-3xl"></div>
|
||||
<div className="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-96 h-96 bg-purple-500/3 rounded-full blur-3xl"></div>
|
||||
|
||||
@@ -1,33 +1,42 @@
|
||||
import React from "react";
|
||||
import { Phone, Mail } from "lucide-react";
|
||||
import { motion } from "framer-motion";
|
||||
import { number } from "yup";
|
||||
|
||||
const offices = [
|
||||
{
|
||||
region: "Asia Pacific",
|
||||
address: `614, 6th Floor, Palms Spring center,\nLink Road, Malad (West), Mumbai - 400064, India`,
|
||||
image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapone.webp",
|
||||
number: "+91 7700900039",
|
||||
email: "ideas@wdipl.com",
|
||||
},
|
||||
{
|
||||
region: "America",
|
||||
address: `215 Jefferson Street, Fort Collins,\nCO 80524, USA`,
|
||||
image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/maptwo.webp",
|
||||
number: "+44 7464741335",
|
||||
email: "ideas@wdipl.com",
|
||||
},
|
||||
{
|
||||
region: "Europe",
|
||||
address: `2, Frederick Street, Kings Cross,\nLondon, WC1X 0ND, England, UK.\nCRN-14194669, UK`,
|
||||
image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapthree.webp",
|
||||
number: "+44 7464741335",
|
||||
email: "ideas@wdipl.com",
|
||||
},
|
||||
{
|
||||
region: "Middle East",
|
||||
address: `Perth, WA 6000`,
|
||||
image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapfour.webp",
|
||||
number: "+44 7464741335",
|
||||
email: "ideas@wdipl.com",
|
||||
},
|
||||
];
|
||||
|
||||
export default function GlobalOffices() {
|
||||
return (
|
||||
<section className="bg-wdi-grey text-white py-16 lg:px-8 container mx-auto">
|
||||
<section className="bg-wdi-grey text-white py-20 lg:px-8 container mx-auto">
|
||||
{/* Section Heading */}
|
||||
<motion.h2
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
@@ -73,11 +82,11 @@ export default function GlobalOffices() {
|
||||
<div className="mt-4 space-y-2 text-sm">
|
||||
<div className="flex items-center gap-2">
|
||||
<Phone size={16} />
|
||||
<span>(+91) 7700900039</span>
|
||||
<span>{office.number}</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Mail size={16} />
|
||||
<span>ideas@wdipl.com</span>
|
||||
<span>{office.email}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,8 +1,25 @@
|
||||
import React from "react";
|
||||
import { motion } from "framer-motion";
|
||||
import { FileText, Palette, Code, Rocket } from "lucide-react";
|
||||
import { GridPattern } from "./GridPattern";
|
||||
|
||||
const steps = [
|
||||
// Define the step interface
|
||||
interface Step {
|
||||
title: string;
|
||||
description: string;
|
||||
icon: React.ComponentType<any> | React.ReactElement;
|
||||
color?: string; // Make color optional
|
||||
number?: string;
|
||||
details?: string[];
|
||||
}
|
||||
|
||||
interface StepsIllustratedProps {
|
||||
title?: string;
|
||||
subtitle?: string;
|
||||
steps?: Step[];
|
||||
}
|
||||
|
||||
const defaultSteps: Step[] = [
|
||||
{
|
||||
title: "Define Scope",
|
||||
description: "We analyze your requirements and create a detailed project roadmap with clear timelines.",
|
||||
@@ -29,8 +46,25 @@ const steps = [
|
||||
}
|
||||
];
|
||||
|
||||
const StepCard = ({ step, index }: { step: typeof steps[0]; index: number }) => {
|
||||
const Icon = step.icon;
|
||||
interface Step {
|
||||
title: string;
|
||||
description: string;
|
||||
icon: React.ComponentType<any> | React.ReactElement;
|
||||
color?: string; // Make color optional
|
||||
number?: string;
|
||||
details?: string[];
|
||||
}
|
||||
|
||||
const StepCard = ({ step, index, totalSteps }: { step: Step; index: number; totalSteps: number }) => {
|
||||
// Define default colors if not provided
|
||||
const defaultColors = [
|
||||
"from-blue-500 to-cyan-500",
|
||||
"from-purple-500 to-pink-500",
|
||||
"from-green-500 to-emerald-500",
|
||||
"from-[#E5195E] to-orange-500"
|
||||
];
|
||||
|
||||
const color = step.color || defaultColors[index] || "from-blue-500 to-cyan-500";
|
||||
|
||||
return (
|
||||
<motion.div
|
||||
@@ -41,14 +75,21 @@ const StepCard = ({ step, index }: { step: typeof steps[0]; index: number }) =>
|
||||
className="relative group"
|
||||
>
|
||||
{/* Connection Line */}
|
||||
{index < steps.length - 1 && (
|
||||
{index < totalSteps - 1 && (
|
||||
<div className="hidden lg:block absolute top-16 left-full w-full h-0.5 bg-gradient-to-r from-white/20 to-transparent z-0" />
|
||||
)}
|
||||
|
||||
<div className="relative z-10 text-center">
|
||||
<div className="mb-6">
|
||||
<div className={`w-20 h-20 mx-auto rounded-2xl bg-gradient-to-br ${step.color} flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300`}>
|
||||
<Icon className="w-10 h-10 text-white" />
|
||||
<div className={`w-20 h-20 mx-auto rounded-2xl bg-gradient-to-br ${color} flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300`}>
|
||||
{/* Handle both React components and JSX elements */}
|
||||
{typeof step.icon === 'function' ? (
|
||||
<step.icon className="w-10 h-10 text-white" />
|
||||
) : (
|
||||
React.cloneElement(step.icon as React.ReactElement, {
|
||||
className: "w-10 h-10 text-white"
|
||||
})
|
||||
)}
|
||||
</div>
|
||||
<div className="w-8 h-8 mx-auto rounded-full bg-[#E5195E] flex items-center justify-center text-white font-bold text-sm">
|
||||
{index + 1}
|
||||
@@ -62,7 +103,11 @@ const StepCard = ({ step, index }: { step: typeof steps[0]; index: number }) =>
|
||||
);
|
||||
};
|
||||
|
||||
export const StepsIllustrated = () => {
|
||||
export const StepsIllustrated = ({ title, subtitle, steps }: StepsIllustratedProps) => {
|
||||
const finalSteps = steps ?? defaultSteps;
|
||||
const finalTitle = title ?? "How We Turn Your Idea Into a Scalable Product";
|
||||
const finalSubtitle = subtitle ?? "Our proven 4-step process ensures your project is delivered on time, on budget, and exceeds expectations.";
|
||||
|
||||
return (
|
||||
<section className="relative py-20 bg-[#121212] overflow-hidden">
|
||||
<GridPattern strokeDasharray="4 2" />
|
||||
@@ -76,16 +121,21 @@ export const StepsIllustrated = () => {
|
||||
className="text-center mb-16"
|
||||
>
|
||||
<h2 className="text-3xl lg:text-4xl font-semibold text-white mb-4">
|
||||
How We Turn Your Idea Into a Scalable Product
|
||||
{finalTitle}
|
||||
</h2>
|
||||
<p className="text-[#CCCCCC] text-lg max-w-2xl mx-auto">
|
||||
Our proven 4-step process ensures your project is delivered on time, on budget, and exceeds expectations.
|
||||
{finalSubtitle}
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
<div className="grid lg:grid-cols-4 gap-12 max-w-6xl mx-auto">
|
||||
{steps.map((step, index) => (
|
||||
<StepCard key={step.title} step={step} index={index} />
|
||||
{finalSteps.map((step, index) => (
|
||||
<StepCard
|
||||
key={step.title}
|
||||
step={step}
|
||||
index={index}
|
||||
totalSteps={finalSteps.length} // Pass the total number of steps
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -13,7 +13,7 @@ const ShimmerButton = React.forwardRef<HTMLButtonElement, ShimmerButtonProps>(
|
||||
ref={ref}
|
||||
className={cn(
|
||||
"relative inline-flex items-center justify-center gap-2 rounded-md bg-accent px-6 py-3 text-sm font-medium text-accent-foreground transition-all duration-300 hover:bg-accent/90 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-accent whitespace-nowrap overflow-hidden",
|
||||
"before:absolute before:inset-0 before:-translate-x-full before:animate-[shimmer_2s_infinite] before:bg-gradient-to-r before:from-transparent before:via-white/10 before:to-transparent",
|
||||
"before:absolute before:inset-0 before:-translate-x-full before:animate-[shimmer_2s_infinite] before:bg-gradient-to-r before:from-transparent before:via-white/10 before:to-transparent cursor-pointer",
|
||||
className
|
||||
)}
|
||||
{...props}
|
||||
|
||||
@@ -27,7 +27,7 @@ export const TechStackVisualization = ({ stacks }: TechStackVisualizationProps)
|
||||
</motion.div>
|
||||
|
||||
{/* Tech Stack Orbits */}
|
||||
{stacks.map((stack, stackIndex) => (
|
||||
{(stacks ?? []).map((stack, stackIndex) => (
|
||||
<motion.div
|
||||
key={stack.name}
|
||||
initial={{ opacity: 0 }}
|
||||
|
||||
@@ -1580,16 +1580,18 @@ const HireBackendDevelopers = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/api-backend-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Backend Developers</span>
|
||||
<span>Hire api Backend Developers</span>
|
||||
</div>
|
||||
</ShimmerButton>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="lg"
|
||||
className="text-lg px-8 py-4 border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
|
||||
className="text-lg px-8 py-4 h-auto border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<FileText className="w-5 h-5 flex-shrink-0" />
|
||||
|
||||
@@ -11,7 +11,9 @@ import {
|
||||
FileText,
|
||||
GraduationCap,
|
||||
Handshake,
|
||||
Layers,
|
||||
LineChart,
|
||||
Link,
|
||||
MessageSquare,
|
||||
Monitor,
|
||||
MousePointer,
|
||||
@@ -19,6 +21,7 @@ import {
|
||||
Paintbrush2,
|
||||
Palette,
|
||||
Receipt,
|
||||
Server,
|
||||
Settings,
|
||||
Shield,
|
||||
ShieldCheck,
|
||||
@@ -618,13 +621,11 @@ const AdminProcess = () => {
|
||||
whileInView={{ opacity: 1, x: 0 }}
|
||||
transition={{ duration: 0.8, delay: index * 0.2 }}
|
||||
viewport={{ once: true }}
|
||||
className={`flex items-center ${
|
||||
isEven ? "lg:flex-row" : "lg:flex-row-reverse"
|
||||
className={`flex items-center ${isEven ? "lg:flex-row" : "lg:flex-row-reverse"
|
||||
} flex-col lg:gap-16 gap-8`}
|
||||
>
|
||||
<div
|
||||
className={`flex-1 ${
|
||||
isEven ? "lg:text-right" : "lg:text-left"
|
||||
className={`flex-1 ${isEven ? "lg:text-right" : "lg:text-left"
|
||||
} text-center lg:text-left`}
|
||||
>
|
||||
<div className="bg-card/20 backdrop-blur-md rounded-2xl border border-white/10 p-8 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl">
|
||||
@@ -1271,56 +1272,35 @@ const AdminInlineCTA = () => {
|
||||
};
|
||||
|
||||
// Hire UI/UX Designers
|
||||
const HireDesigners = () => {
|
||||
const designerTypes = [
|
||||
const HireDevelopers = () => {
|
||||
const developerTypes = [
|
||||
{
|
||||
title: "UI/UX Designers",
|
||||
description: "Specialists in intuitive admin interface design",
|
||||
icon: Palette,
|
||||
skills: [
|
||||
"User Experience Design",
|
||||
"Interface Design",
|
||||
"Wireframing",
|
||||
"Prototyping",
|
||||
],
|
||||
title: "Frontend Developers (React, Angular, Vue)",
|
||||
description: "Specialized in building responsive, interactive admin interfaces with modern frameworks and seamless user experiences.",
|
||||
icon: Code,
|
||||
skills: ["React", "Angular", "Vue.js", "TypeScript", "Tailwind CSS", "Component Libraries", "State Management", "Responsive Design"]
|
||||
},
|
||||
{
|
||||
title: "Dashboard Designers",
|
||||
description: "Experts in data visualization and dashboard layouts",
|
||||
icon: BarChart,
|
||||
skills: [
|
||||
"Data Visualization",
|
||||
"Dashboard Design",
|
||||
"Information Architecture",
|
||||
"User Research",
|
||||
],
|
||||
title: "Backend Developers (Node.js, Python, Databases)",
|
||||
description: "Expert in creating robust server-side architecture, APIs, and database design for scalable admin panel systems.",
|
||||
icon: Server,
|
||||
skills: ["Node.js", "Python", "Express.js", "RESTful APIs", "PostgreSQL", "MongoDB", "Redis", "Authentication"]
|
||||
},
|
||||
{
|
||||
title: "Interaction Designers",
|
||||
description: "Focused on user interactions and workflow optimization",
|
||||
icon: MousePointer,
|
||||
skills: [
|
||||
"Interaction Design",
|
||||
"User Flow Design",
|
||||
"Usability Testing",
|
||||
"Accessibility Design",
|
||||
],
|
||||
title: "API & Integration Developers",
|
||||
description: "Focused on seamless third-party integrations, microservices architecture, and efficient data synchronization.",
|
||||
icon: Link,
|
||||
skills: ["REST APIs", "GraphQL", "Microservices", "Webhook Integration", "OAuth", "JWT", "API Security", "Data Migration"]
|
||||
},
|
||||
{
|
||||
title: "Product Designers",
|
||||
description: "End-to-end design for complex admin systems",
|
||||
icon: Briefcase,
|
||||
skills: [
|
||||
"Product Strategy",
|
||||
"Design Systems",
|
||||
"User Testing",
|
||||
"Cross-platform Design",
|
||||
],
|
||||
},
|
||||
title: "Full-Stack Developers",
|
||||
description: "End-to-end development expertise covering both frontend interfaces and backend systems for complete admin solutions.",
|
||||
icon: Layers,
|
||||
skills: ["Full-Stack Development", "System Architecture", "DevOps", "Testing", "Performance Optimization", "Security", "Documentation", "Deployment"]
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<section className="py-32 bg-black">
|
||||
<section className="py-20 bg-black">
|
||||
<div className="container mx-auto px-6 lg:px-8">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
@@ -1330,11 +1310,10 @@ const HireDesigners = () => {
|
||||
className="text-center mb-20"
|
||||
>
|
||||
<h2 className="text-4xl lg:text-5xl font-semibold text-white mb-6">
|
||||
Need UI/UX Expertise for Your Admin Panel?
|
||||
Need Expert Developers for Your Admin Panel?
|
||||
</h2>
|
||||
<p className="text-xl text-gray-300 max-w-3xl mx-auto leading-relaxed">
|
||||
Our designers specialize in creating intuitive and functional
|
||||
interfaces for complex dashboards and internal tools.
|
||||
Our developers specialize in creating powerful and scalable admin interfaces with robust backend systems and seamless integrations.
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
@@ -1345,14 +1324,14 @@ const HireDesigners = () => {
|
||||
viewport={{ once: true }}
|
||||
className="grid md:grid-cols-2 lg:grid-cols-2 gap-8 mb-12"
|
||||
>
|
||||
{designerTypes.map((type, index) => {
|
||||
{developerTypes.map((type, index) => {
|
||||
const IconComponent = type.icon;
|
||||
return (
|
||||
<motion.div
|
||||
key={index}
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.01 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.1 }}
|
||||
viewport={{ once: true }}
|
||||
whileHover={{ y: -5 }}
|
||||
className="group"
|
||||
@@ -1369,16 +1348,10 @@ const HireDesigners = () => {
|
||||
{type.description}
|
||||
</p>
|
||||
<div className="space-y-2">
|
||||
<h4 className="text-sm font-medium text-white">
|
||||
Core Skills:
|
||||
</h4>
|
||||
<h4 className="text-sm font-medium text-white">Core Skills:</h4>
|
||||
<div className="flex flex-wrap gap-2">
|
||||
{type.skills.map((skill) => (
|
||||
<Badge
|
||||
key={skill}
|
||||
variant="secondary"
|
||||
className="text-xs bg-gray-800/50 text-gray-300 border-gray-700"
|
||||
>
|
||||
<Badge key={skill} variant="secondary" className="text-xs bg-gray-800/50 text-gray-300 border-gray-700">
|
||||
{skill}
|
||||
</Badge>
|
||||
))}
|
||||
@@ -1399,20 +1372,22 @@ const HireDesigners = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/admin-panel-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Palette className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire UI/UX Designers</span>
|
||||
<Code className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Admin Panel Dashboard Developers</span>
|
||||
</div>
|
||||
</ShimmerButton>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="lg"
|
||||
className="text-lg px-8 py-4 border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
|
||||
className="text-lg px-8 py-4 h-auto border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<FileText className="w-5 h-5 flex-shrink-0" />
|
||||
<span>View Profiles</span>
|
||||
<span>Request a Custom Dashboard Development Consultation</span>
|
||||
</div>
|
||||
</Button>
|
||||
</div>
|
||||
@@ -1616,7 +1591,7 @@ export const AdminPanelsDashboards = () => {
|
||||
|
||||
{/* Hire Designers */}
|
||||
<section className="bg-background">
|
||||
<HireDesigners />
|
||||
<HireDevelopers />
|
||||
</section>
|
||||
|
||||
{/* FAQs */}
|
||||
|
||||
@@ -1115,7 +1115,7 @@ const HireAndroidDevelopers = () => {
|
||||
>
|
||||
<ShimmerButton
|
||||
className="px-8 py-4"
|
||||
onClick={() => navigateTo("/start-a-project")}
|
||||
onClick={() => navigateTo("/hire-talent/android-app-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<UserPlus className="w-5 h-5 flex-shrink-0" />
|
||||
|
||||
@@ -1234,7 +1234,9 @@ const HirePrototypeDesigners = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/clickable-prototypes-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire UI/UX Designers</span>
|
||||
|
||||
@@ -1127,7 +1127,9 @@ const HireCrossPlatformDevelopers = () => {
|
||||
viewport={{ once: true }}
|
||||
className="flex flex-col sm:flex-row gap-4 justify-center"
|
||||
>
|
||||
<ShimmerButton className="px-8 py-4">
|
||||
<ShimmerButton className="px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/cross-platform-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<UserPlus className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Cross-Platform Developers</span>
|
||||
|
||||
@@ -1207,10 +1207,12 @@ const HireWebDevelopers = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/custom-web-app-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Web Developers</span>
|
||||
<span>Hire custom Web Developers</span>
|
||||
</div>
|
||||
</ShimmerButton>
|
||||
<Button
|
||||
@@ -1437,7 +1439,7 @@ export const CustomWebAppDevelopment = () => {
|
||||
</section>
|
||||
|
||||
{/* Footer */}
|
||||
<section className="bg-card">
|
||||
<section >
|
||||
<Footer />
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -1253,7 +1253,9 @@ const HireFacilitators = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/design-thinking-workshops-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<UserPlus className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire UX Strategists</span>
|
||||
|
||||
@@ -1373,7 +1373,9 @@ const HireEcommerceDevelopers = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/ecommerce-platform-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire eCommerce Developers</span>
|
||||
|
||||
@@ -1541,7 +1541,9 @@ const HireEnterpriseTalent = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/enterprise-software-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Enterprise Talent</span>
|
||||
@@ -1773,7 +1775,7 @@ export const EnterpriseSoftwareSolutions = () => {
|
||||
</section>
|
||||
|
||||
{/* Footer */}
|
||||
<section className="bg-card">
|
||||
<section>
|
||||
<Footer />
|
||||
</section>
|
||||
</div>
|
||||
|
||||
195
pages/HireAPIBackendDevelopers.tsx
Normal file
195
pages/HireAPIBackendDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { BackendVector } from "../components/vectors/BackendVector";
|
||||
import { Server, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireAPIBackendDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire API & Backend Development Developers",
|
||||
description: "Build robust, scalable backend systems and APIs that power your applications. Our developers specialize in microservices, RESTful APIs, GraphQL, and cloud-native backend architectures.",
|
||||
primaryCTA: {
|
||||
text: "Hire API & Backend Developers",
|
||||
href: "/contact-us",
|
||||
icon: Server
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// API & Backend specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "400+",
|
||||
label: "APIs Developed",
|
||||
description: "Production-ready endpoints"
|
||||
},
|
||||
{
|
||||
value: "99.99%",
|
||||
label: "API Uptime",
|
||||
description: "Enterprise-grade reliability"
|
||||
},
|
||||
{
|
||||
value: "<100ms",
|
||||
label: "Average Response Time",
|
||||
description: "Optimized performance"
|
||||
},
|
||||
{
|
||||
value: "1M+",
|
||||
label: "Requests Per Minute",
|
||||
description: "High-throughput handling"
|
||||
}
|
||||
],
|
||||
|
||||
// API & Backend development process
|
||||
process: {
|
||||
title: "Our API & Backend Development Process",
|
||||
subtitle: "From architecture design to production deployment",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Architecture & API Design",
|
||||
description: "Design scalable backend architecture and define comprehensive API specifications for optimal performance.",
|
||||
icon: <Server className="w-8 h-8" />,
|
||||
details: [
|
||||
"System architecture and technology selection",
|
||||
"API design and documentation (OpenAPI/Swagger)",
|
||||
"Database schema and optimization planning",
|
||||
"Security and authentication strategy"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Development & Implementation",
|
||||
description: "Build robust backend services with clean code, proper error handling, and comprehensive testing.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"RESTful API and GraphQL development",
|
||||
"Microservices architecture implementation",
|
||||
"Database integration and optimization",
|
||||
"Authentication and authorization systems"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Testing & Quality Assurance",
|
||||
description: "Comprehensive testing including unit tests, integration tests, and performance optimization.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Automated testing pipelines",
|
||||
"Load testing and performance optimization",
|
||||
"Security testing and vulnerability assessment",
|
||||
"API documentation and validation"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Deployment & Monitoring",
|
||||
description: "Deploy to production with CI/CD pipelines, monitoring, and comprehensive logging systems.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"CI/CD pipeline setup and automation",
|
||||
"Production deployment and scaling",
|
||||
"Monitoring, logging, and alerting",
|
||||
"Performance optimization and maintenance"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// API & Backend focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What backend technologies and frameworks do your developers use?",
|
||||
answer: "Our developers are proficient in Node.js, Python (Django/Flask), .NET Core, Java Spring, PHP Laravel, Ruby on Rails, and Go. We also work with both SQL (PostgreSQL, MySQL) and NoSQL (MongoDB, Redis) databases based on your requirements."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure API security and data protection?",
|
||||
answer: "We implement comprehensive security measures including OAuth 2.0, JWT tokens, API rate limiting, input validation, SQL injection prevention, encryption at rest and in transit, and regular security audits to protect your data and systems."
|
||||
},
|
||||
{
|
||||
question: "Can you build both RESTful APIs and GraphQL endpoints?",
|
||||
answer: "Yes, we develop both RESTful APIs following REST principles and GraphQL APIs for more flexible data querying. We help you choose the best approach based on your frontend requirements, data complexity, and performance needs."
|
||||
},
|
||||
{
|
||||
question: "How do you handle API scalability and performance optimization?",
|
||||
answer: "We design APIs with scalability in mind using microservices architecture, caching strategies (Redis, Memcached), database optimization, load balancing, and auto-scaling infrastructure to handle growing traffic and data volumes."
|
||||
},
|
||||
{
|
||||
question: "Do you provide API documentation and integration support?",
|
||||
answer: "Yes, we create comprehensive API documentation using tools like Swagger/OpenAPI, provide integration guides, code examples, and offer ongoing support to help your team and third-party developers integrate with your APIs effectively."
|
||||
},
|
||||
{
|
||||
question: "How do you handle database design and optimization?",
|
||||
answer: "We design optimized database schemas, implement proper indexing strategies, set up replication and backup systems, and use database optimization techniques like query optimization, connection pooling, and caching to ensure optimal performance."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireAPIBackendDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with BackendVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={BackendVector}
|
||||
category={hireAPIBackendDevelopersData.heroBanner.category}
|
||||
title={hireAPIBackendDevelopersData.heroBanner.title}
|
||||
description={hireAPIBackendDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireAPIBackendDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireAPIBackendDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireAPIBackendDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireAPIBackendDevelopersData.process.title}
|
||||
subtitle={hireAPIBackendDevelopersData.process.subtitle}
|
||||
steps={hireAPIBackendDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="API & Backend Development FAQs"
|
||||
subtitle="Everything you need to know about hiring API & backend developers"
|
||||
faqs={hireAPIBackendDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireAdminPanelDevelopers.tsx
Normal file
195
pages/HireAdminPanelDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { DashboardVector } from "../components/vectors/DashboardVector";
|
||||
import { BarChart3, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireAdminPanelDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Admin Panels & Dashboards Developers",
|
||||
description: "Build powerful, intuitive admin panels and data-driven dashboards that streamline business operations. Our developers create custom management interfaces with advanced analytics and reporting capabilities.",
|
||||
primaryCTA: {
|
||||
text: "Hire Admin Panel Developers",
|
||||
href: "/contact-us",
|
||||
icon: BarChart3
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Admin Panel specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "220+",
|
||||
label: "Admin Panels Built",
|
||||
description: "Custom management interfaces"
|
||||
},
|
||||
{
|
||||
value: "95%",
|
||||
label: "User Adoption Rate",
|
||||
description: "Intuitive interface design"
|
||||
},
|
||||
{
|
||||
value: "70%",
|
||||
label: "Time Savings",
|
||||
description: "Process automation achieved"
|
||||
},
|
||||
{
|
||||
value: "Real-time",
|
||||
label: "Data Updates",
|
||||
description: "Live dashboard monitoring"
|
||||
}
|
||||
],
|
||||
|
||||
// Admin Panel development process
|
||||
process: {
|
||||
title: "Our Admin Panel Development Process",
|
||||
subtitle: "From data analysis to intuitive interfaces",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Requirements & Data Analysis",
|
||||
description: "Analyze your business processes and data requirements to design the perfect admin interface.",
|
||||
icon: <BarChart3 className="w-8 h-8" />,
|
||||
details: [
|
||||
"Business workflow analysis",
|
||||
"Data source identification and mapping",
|
||||
"User role and permission planning",
|
||||
"Feature prioritization and roadmap"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Interface Design & UX",
|
||||
description: "Create intuitive, efficient interfaces that make complex data management simple and accessible.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"User-centered design approach",
|
||||
"Information architecture and navigation",
|
||||
"Responsive dashboard layouts",
|
||||
"Accessibility and usability optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Development & Integration",
|
||||
description: "Build robust admin panels with real-time data processing and seamless system integrations.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Custom admin panel development",
|
||||
"Database integration and optimization",
|
||||
"API development and third-party integrations",
|
||||
"Role-based access control implementation"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Analytics & Deployment",
|
||||
description: "Deploy with advanced analytics, reporting capabilities, and comprehensive user training.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Advanced reporting and analytics",
|
||||
"Performance monitoring and optimization",
|
||||
"User training and documentation",
|
||||
"Ongoing support and maintenance"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Admin Panel focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of admin panels and dashboards can you develop?",
|
||||
answer: "We develop various types including CRM admin panels, inventory management dashboards, analytics dashboards, user management systems, content management interfaces, financial reporting dashboards, and custom business intelligence platforms tailored to your specific needs."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure data security and user access control?",
|
||||
answer: "We implement robust security measures including role-based access control (RBAC), data encryption, audit trails, session management, two-factor authentication, and compliance with security standards to protect sensitive business data and user information."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate admin panels with our existing systems?",
|
||||
answer: "Yes, we specialize in integrating admin panels with existing databases, CRM systems, ERP platforms, APIs, and third-party services. We ensure seamless data flow and maintain data consistency across all your business systems."
|
||||
},
|
||||
{
|
||||
question: "What technologies do you use for admin panel development?",
|
||||
answer: "We use modern technologies including React, Vue.js, Angular for frontend; Node.js, Python Django, .NET Core for backend; and advanced charting libraries like D3.js, Chart.js for data visualization, along with databases optimized for reporting and analytics."
|
||||
},
|
||||
{
|
||||
question: "How do you handle real-time data updates and notifications?",
|
||||
answer: "We implement real-time features using WebSockets, Server-Sent Events, and push notification services to ensure your admin panels display live data updates, instant alerts, and real-time system status monitoring for critical business operations."
|
||||
},
|
||||
{
|
||||
question: "Do you provide training and documentation for admin panel users?",
|
||||
answer: "Yes, we provide comprehensive user training, detailed documentation, video tutorials, and ongoing support to ensure your team can effectively use all features of the admin panel and maximize productivity from day one."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireAdminPanelDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with DashboardVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={DashboardVector}
|
||||
category={hireAdminPanelDevelopersData.heroBanner.category}
|
||||
title={hireAdminPanelDevelopersData.heroBanner.title}
|
||||
description={hireAdminPanelDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireAdminPanelDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireAdminPanelDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireAdminPanelDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireAdminPanelDevelopersData.process.title}
|
||||
subtitle={hireAdminPanelDevelopersData.process.subtitle}
|
||||
steps={hireAdminPanelDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Admin Panel Development FAQs"
|
||||
subtitle="Everything you need to know about hiring admin panel developers"
|
||||
faqs={hireAdminPanelDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireAndroidAppDevelopers.tsx
Normal file
195
pages/HireAndroidAppDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { MobileAppVector } from "../components/vectors/MobileAppVector";
|
||||
import { Smartphone, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireAndroidAppDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Android App Developers",
|
||||
description: "Get access to skilled Android developers specialized in Kotlin, Java, and Android SDK. Build powerful Android applications that reach billions of users worldwide.",
|
||||
primaryCTA: {
|
||||
text: "Hire Android Developers",
|
||||
href: "/contact-us",
|
||||
icon: Smartphone
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Android-specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "180+",
|
||||
label: "Android Apps Delivered",
|
||||
description: "Successfully launched on Google Play"
|
||||
},
|
||||
{
|
||||
value: "4.7/5",
|
||||
label: "Play Store Rating",
|
||||
description: "Average user satisfaction"
|
||||
},
|
||||
{
|
||||
value: "45M+",
|
||||
label: "Android Downloads",
|
||||
description: "Across all published apps"
|
||||
},
|
||||
{
|
||||
value: "96%",
|
||||
label: "Play Store Approval",
|
||||
description: "First-time submission success"
|
||||
}
|
||||
],
|
||||
|
||||
// Android development process
|
||||
process: {
|
||||
title: "Our Android Development Process",
|
||||
subtitle: "From concept to Google Play success",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Android Strategy & Architecture",
|
||||
description: "Define Android-specific features, target devices, and architecture for optimal performance across Android ecosystem.",
|
||||
icon: <Smartphone className="w-8 h-8" />,
|
||||
details: [
|
||||
"Android version compatibility analysis",
|
||||
"Device fragmentation strategy",
|
||||
"Kotlin/Java architecture planning",
|
||||
"Material Design implementation"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Material Design Implementation",
|
||||
description: "Create beautiful, intuitive designs following Google's Material Design principles and Android guidelines.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Material Design 3 components",
|
||||
"Android adaptive layouts",
|
||||
"Accessibility features",
|
||||
"Dark theme support"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Kotlin Development & Testing",
|
||||
description: "Build robust Android applications using Kotlin and modern Android development tools with comprehensive testing.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Kotlin modern development",
|
||||
"Android Jetpack libraries",
|
||||
"Android Studio testing",
|
||||
"Performance optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Google Play Launch",
|
||||
description: "Handle Google Play Store submission, optimization, and compliance with Google's policies.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Google Play Console setup",
|
||||
"Android App Bundle optimization",
|
||||
"Google Play policies compliance",
|
||||
"Post-launch Android updates"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Android-focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What Android technologies and frameworks do your developers use?",
|
||||
answer: "Our Android developers are experts in Kotlin, Java, Android SDK, Jetpack Compose, Room Database, Retrofit, and other modern Android frameworks. We follow Google's recommended architecture patterns like MVVM and Clean Architecture."
|
||||
},
|
||||
{
|
||||
question: "How do you handle Android device fragmentation?",
|
||||
answer: "We use responsive design principles, test across various screen sizes and Android versions, implement adaptive layouts, and follow Android's compatibility guidelines to ensure consistent performance across different devices."
|
||||
},
|
||||
{
|
||||
question: "Do you handle Google Play Store submission and optimization?",
|
||||
answer: "Yes, we manage the complete Google Play Store submission process including app bundle optimization, store listing creation, compliance with Google's policies, and handling any review feedback for successful app approval."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate Android apps with Google services?",
|
||||
answer: "Absolutely. Our developers are experienced in integrating with Google services like Firebase, Google Maps, Google Pay, Google Assistant, Google Drive, and other Google APIs to enhance app functionality."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure Android app security and performance?",
|
||||
answer: "We implement Android security best practices including ProGuard/R8 code obfuscation, secure networking, encrypted storage, biometric authentication, and optimize for battery life and memory usage across different Android devices."
|
||||
},
|
||||
{
|
||||
question: "Do you support Android TV, Wear OS, and other Android platforms?",
|
||||
answer: "Yes, our developers have experience with various Android platforms including Android TV, Wear OS, Android Auto, and Android Things, creating comprehensive solutions across the Android ecosystem."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireAndroidAppDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with MobileAppVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={MobileAppVector}
|
||||
category={hireAndroidAppDevelopersData.heroBanner.category}
|
||||
title={hireAndroidAppDevelopersData.heroBanner.title}
|
||||
description={hireAndroidAppDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireAndroidAppDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireAndroidAppDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireAndroidAppDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireAndroidAppDevelopersData.process.title}
|
||||
subtitle={hireAndroidAppDevelopersData.process.subtitle}
|
||||
steps={hireAndroidAppDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Android Development FAQs"
|
||||
subtitle="Everything you need to know about hiring Android app developers"
|
||||
faqs={hireAndroidAppDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireClickablePrototypesDevelopers.tsx
Normal file
195
pages/HireClickablePrototypesDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { ProjectTimelineVector } from "../components/vectors/ProjectTimelineVector";
|
||||
import { MousePointer, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireClickablePrototypesDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Designers",
|
||||
title: "Hire Clickable Prototypes Developers",
|
||||
description: "Bring your ideas to life with interactive, clickable prototypes that demonstrate functionality and user experience before development begins. Validate concepts and iterate designs efficiently.",
|
||||
primaryCTA: {
|
||||
text: "Hire Prototype Experts",
|
||||
href: "/contact-us",
|
||||
icon: MousePointer
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Designer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Clickable Prototypes specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "250+",
|
||||
label: "Interactive Prototypes",
|
||||
description: "Clickable demonstrations built"
|
||||
},
|
||||
{
|
||||
value: "80%",
|
||||
label: "Development Time Saved",
|
||||
description: "Through early validation"
|
||||
},
|
||||
{
|
||||
value: "95%",
|
||||
label: "Stakeholder Approval",
|
||||
description: "Clear concept visualization"
|
||||
},
|
||||
{
|
||||
value: "48hrs",
|
||||
label: "Rapid Prototyping",
|
||||
description: "Quick concept to clickable"
|
||||
}
|
||||
],
|
||||
|
||||
// Clickable Prototypes development process
|
||||
process: {
|
||||
title: "Our Clickable Prototyping Process",
|
||||
subtitle: "From concept sketches to interactive demonstrations",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Concept Analysis & Planning",
|
||||
description: "Analyze requirements and create a strategic plan for building interactive prototypes that effectively communicate your vision.",
|
||||
icon: <MousePointer className="w-8 h-8" />,
|
||||
details: [
|
||||
"Requirement analysis and feature prioritization",
|
||||
"User journey mapping and interaction planning",
|
||||
"Prototype scope definition and timeline",
|
||||
"Tool selection and technical approach"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Wireframe & Interaction Design",
|
||||
description: "Create detailed wireframes and design the interaction patterns that will make your prototype intuitive and engaging.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Low to mid-fidelity wireframe creation",
|
||||
"Interaction flow design and micro-animations",
|
||||
"Navigation structure and user pathways",
|
||||
"Content strategy and placeholder integration"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Interactive Prototype Development",
|
||||
description: "Build high-fidelity, clickable prototypes with realistic interactions, animations, and user feedback mechanisms.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"High-fidelity interactive prototype creation",
|
||||
"Realistic animations and transitions",
|
||||
"Multi-device responsive prototyping",
|
||||
"Integration of real content and data"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Testing & Iteration",
|
||||
description: "Conduct user testing sessions and iterate based on feedback to ensure the prototype meets user expectations and business goals.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"User testing and feedback collection",
|
||||
"Prototype refinement and optimization",
|
||||
"Stakeholder review and approval process",
|
||||
"Documentation and handoff preparation"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Clickable Prototypes focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of clickable prototypes can you create?",
|
||||
answer: "We create various types including low to high-fidelity interactive prototypes, mobile app prototypes, web application demos, dashboard prototypes, user flow demonstrations, and concept validation prototypes using tools like Figma, InVision, Principle, and Framer."
|
||||
},
|
||||
{
|
||||
question: "How realistic are the interactions in your prototypes?",
|
||||
answer: "Our prototypes include realistic interactions such as form submissions, navigation transitions, hover effects, loading states, modal dialogs, and micro-animations that closely simulate the final product experience for accurate user testing and stakeholder demonstration."
|
||||
},
|
||||
{
|
||||
question: "What tools do you use for creating clickable prototypes?",
|
||||
answer: "We use industry-leading tools including Figma, InVision, Adobe XD, Principle, Framer, ProtoPie, and Axure RP. Tool selection depends on project complexity, interaction requirements, and client preferences for collaboration and feedback."
|
||||
},
|
||||
{
|
||||
question: "How long does it take to create a clickable prototype?",
|
||||
answer: "Timeline varies by complexity: simple prototypes (2-5 screens) take 1-2 days, moderate complexity (10-15 screens) takes 3-5 days, and complex prototypes (20+ screens with advanced interactions) take 1-2 weeks. We provide detailed timelines during planning."
|
||||
},
|
||||
{
|
||||
question: "Can prototypes be used for user testing and stakeholder presentations?",
|
||||
answer: "Absolutely! Our prototypes are specifically designed for user testing, stakeholder demonstrations, and investor presentations. They can be shared via web links, embedded in presentations, or accessed on mobile devices for comprehensive feedback collection."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure prototypes align with final development requirements?",
|
||||
answer: "We work closely with development teams to ensure prototypes use realistic constraints, follow technical feasibility guidelines, include proper annotations and specifications, and maintain consistency with design systems and development frameworks."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireClickablePrototypesDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with ProjectTimelineVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={ProjectTimelineVector}
|
||||
category={hireClickablePrototypesDevelopersData.heroBanner.category}
|
||||
title={hireClickablePrototypesDevelopersData.heroBanner.title}
|
||||
description={hireClickablePrototypesDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireClickablePrototypesDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireClickablePrototypesDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireClickablePrototypesDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireClickablePrototypesDevelopersData.process.title}
|
||||
subtitle={hireClickablePrototypesDevelopersData.process.subtitle}
|
||||
steps={hireClickablePrototypesDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Clickable Prototypes FAQs"
|
||||
subtitle="Everything you need to know about hiring clickable prototype developers"
|
||||
faqs={hireClickablePrototypesDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireCrossPlatformDevelopers.tsx
Normal file
195
pages/HireCrossPlatformDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { TechStackVisualization } from "../components/vectors/TechStackVisualization";
|
||||
import { Smartphone, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireCrossPlatformDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Cross-Platform Developers",
|
||||
description: "Get access to expert cross-platform developers specialized in React Native, Flutter, and Xamarin. Build once, deploy everywhere with native performance and user experience.",
|
||||
primaryCTA: {
|
||||
text: "Hire Cross-Platform Developers",
|
||||
href: "/contact-us",
|
||||
icon: Smartphone
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Cross-platform specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "120+",
|
||||
label: "Cross-Platform Apps",
|
||||
description: "Successfully deployed on both platforms"
|
||||
},
|
||||
{
|
||||
value: "60%",
|
||||
label: "Development Time Saved",
|
||||
description: "Compared to native development"
|
||||
},
|
||||
{
|
||||
value: "25M+",
|
||||
label: "Multi-Platform Downloads",
|
||||
description: "Across iOS and Android"
|
||||
},
|
||||
{
|
||||
value: "92%",
|
||||
label: "Code Reusability",
|
||||
description: "Shared across platforms"
|
||||
}
|
||||
],
|
||||
|
||||
// Cross-platform development process
|
||||
process: {
|
||||
title: "Our Cross-Platform Development Process",
|
||||
subtitle: "Efficient development for multiple platforms",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Platform Strategy & Framework Selection",
|
||||
description: "Analyze requirements and select the best cross-platform framework for your project needs.",
|
||||
icon: <Smartphone className="w-8 h-8" />,
|
||||
details: [
|
||||
"React Native vs Flutter analysis",
|
||||
"Performance requirements assessment",
|
||||
"Platform-specific feature evaluation",
|
||||
"Code sharing strategy planning"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Unified Design System",
|
||||
description: "Create consistent designs that work seamlessly across iOS and Android platforms.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Cross-platform design system",
|
||||
"Platform-aware components",
|
||||
"Responsive layout design",
|
||||
"Accessibility across platforms"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Cross-Platform Development",
|
||||
description: "Build applications using modern cross-platform frameworks with native performance optimization.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"React Native/Flutter development",
|
||||
"Native module integration",
|
||||
"Platform-specific optimizations",
|
||||
"Comprehensive testing across platforms"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Dual Store Deployment",
|
||||
description: "Deploy to both App Store and Google Play with optimized listings and compliance.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Simultaneous store submissions",
|
||||
"Platform-specific optimizations",
|
||||
"Dual store ASO strategy",
|
||||
"Synchronized update management"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Cross-platform focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "Which cross-platform frameworks do your developers specialize in?",
|
||||
answer: "Our developers are experts in React Native, Flutter, and Xamarin. We help you choose the best framework based on your project requirements, team expertise, performance needs, and long-term maintenance considerations."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure native-like performance in cross-platform apps?",
|
||||
answer: "We optimize performance through efficient state management, native module integration when needed, proper memory management, and platform-specific optimizations. We also conduct extensive testing to ensure smooth performance on both platforms."
|
||||
},
|
||||
{
|
||||
question: "Can cross-platform apps access native device features?",
|
||||
answer: "Yes, our developers can integrate native device features like camera, GPS, push notifications, biometric authentication, and platform-specific APIs through native modules and plugins, ensuring full functionality across platforms."
|
||||
},
|
||||
{
|
||||
question: "How much development time and cost can cross-platform save?",
|
||||
answer: "Cross-platform development typically saves 40-60% in development time and costs compared to building separate native apps. The exact savings depend on app complexity, required platform-specific features, and customization needs."
|
||||
},
|
||||
{
|
||||
question: "Do you handle platform-specific customizations and requirements?",
|
||||
answer: "Absolutely. While maximizing code reuse, we implement platform-specific customizations for optimal user experience, handle different design guidelines, and ensure compliance with both App Store and Google Play requirements."
|
||||
},
|
||||
{
|
||||
question: "How do you maintain and update cross-platform applications?",
|
||||
answer: "We provide ongoing maintenance with synchronized updates across platforms, framework version upgrades, performance optimizations, and new feature additions while maintaining code sharing benefits."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireCrossPlatformDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with TechStackVisualization */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={TechStackVisualization}
|
||||
category={hireCrossPlatformDevelopersData.heroBanner.category}
|
||||
title={hireCrossPlatformDevelopersData.heroBanner.title}
|
||||
description={hireCrossPlatformDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireCrossPlatformDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireCrossPlatformDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireCrossPlatformDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireCrossPlatformDevelopersData.process.title}
|
||||
subtitle={hireCrossPlatformDevelopersData.process.subtitle}
|
||||
steps={hireCrossPlatformDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Cross-Platform Development FAQs"
|
||||
subtitle="Everything you need to know about hiring cross-platform developers"
|
||||
faqs={hireCrossPlatformDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireCustomWebAppDevelopers.tsx
Normal file
195
pages/HireCustomWebAppDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { FrontendVector } from "../components/vectors/FrontendVector";
|
||||
import { Monitor, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireCustomWebAppDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Custom Web Application Developers",
|
||||
description: "Build tailored web applications that perfectly match your business requirements. Our developers create scalable, secure, and user-friendly custom web solutions using cutting-edge technologies.",
|
||||
primaryCTA: {
|
||||
text: "Hire Custom Web Developers",
|
||||
href: "/contact-us",
|
||||
icon: Monitor
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Custom Web App specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "250+",
|
||||
label: "Custom Web Apps Built",
|
||||
description: "Tailored solutions delivered"
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "Client Satisfaction",
|
||||
description: "Project success rate"
|
||||
},
|
||||
{
|
||||
value: "60%",
|
||||
label: "Faster Development",
|
||||
description: "Using modern frameworks"
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Responsive Design",
|
||||
description: "Mobile-first approach"
|
||||
}
|
||||
],
|
||||
|
||||
// Custom Web App development process
|
||||
process: {
|
||||
title: "Our Custom Web Application Process",
|
||||
subtitle: "From business analysis to deployment",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Business Analysis & Planning",
|
||||
description: "Deep dive into your business requirements to design the perfect custom web application architecture.",
|
||||
icon: <Monitor className="w-8 h-8" />,
|
||||
details: [
|
||||
"Requirements gathering and analysis",
|
||||
"User persona and journey mapping",
|
||||
"Technology stack selection",
|
||||
"Project timeline and milestone planning"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Custom Design & Prototyping",
|
||||
description: "Create unique designs and interactive prototypes tailored to your brand and user needs.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Custom UI/UX design system",
|
||||
"Interactive prototypes and wireframes",
|
||||
"Brand integration and consistency",
|
||||
"User experience optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Development & Integration",
|
||||
description: "Build your custom web application with modern technologies and seamless integrations.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Modern framework implementation",
|
||||
"Database design and optimization",
|
||||
"API development and integration",
|
||||
"Third-party service connections"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Testing & Launch",
|
||||
description: "Comprehensive testing and smooth deployment with ongoing support and maintenance.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Comprehensive testing protocols",
|
||||
"Performance optimization",
|
||||
"Security vulnerability testing",
|
||||
"Launch support and monitoring"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Custom Web App focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of custom web applications can you develop?",
|
||||
answer: "We develop a wide range of custom web applications including CRM systems, inventory management tools, project management platforms, e-learning portals, booking systems, and industry-specific business applications tailored to your unique requirements."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure the web application meets our specific business needs?",
|
||||
answer: "We start with thorough business analysis, involving stakeholders in requirement gathering sessions, creating detailed specifications, and developing prototypes for feedback. Our agile approach ensures continuous alignment with your business objectives throughout development."
|
||||
},
|
||||
{
|
||||
question: "What technologies do you use for custom web application development?",
|
||||
answer: "We use modern technologies including React, Angular, Vue.js for frontend; Node.js, Python Django/Flask, .NET Core, PHP Laravel for backend; and databases like PostgreSQL, MongoDB, MySQL based on your specific requirements and scalability needs."
|
||||
},
|
||||
{
|
||||
question: "How do you handle data security and user privacy?",
|
||||
answer: "We implement robust security measures including data encryption, secure authentication systems, role-based access control, regular security audits, and compliance with regulations like GDPR, HIPAA, and industry-specific standards."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate the web application with our existing systems?",
|
||||
answer: "Yes, we specialize in system integration and can connect your custom web application with existing CRM, ERP, payment gateways, databases, and other business systems through APIs and custom integration solutions."
|
||||
},
|
||||
{
|
||||
question: "What ongoing support and maintenance do you provide?",
|
||||
answer: "We provide comprehensive post-launch support including regular updates, security patches, performance monitoring, bug fixes, feature enhancements, and technical support to ensure your application continues to meet evolving business needs."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireCustomWebAppDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with FrontendVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={FrontendVector}
|
||||
category={hireCustomWebAppDevelopersData.heroBanner.category}
|
||||
title={hireCustomWebAppDevelopersData.heroBanner.title}
|
||||
description={hireCustomWebAppDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireCustomWebAppDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireCustomWebAppDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireCustomWebAppDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireCustomWebAppDevelopersData.process.title}
|
||||
subtitle={hireCustomWebAppDevelopersData.process.subtitle}
|
||||
steps={hireCustomWebAppDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Custom Web Application FAQs"
|
||||
subtitle="Everything you need to know about hiring custom web app developers"
|
||||
faqs={hireCustomWebAppDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireDesignThinkingWorkshopsDevelopers.tsx
Normal file
195
pages/HireDesignThinkingWorkshopsDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { TeamCollaborationVector } from "../components/vectors/TeamCollaborationVector";
|
||||
import { Lightbulb, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireDesignThinkingWorkshopsDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Facilitators",
|
||||
title: "Hire Design Thinking Workshops Developers",
|
||||
description: "Transform your innovation process with expert-led design thinking workshops that unlock creative solutions, align stakeholders, and accelerate product development through human-centered design methodologies.",
|
||||
primaryCTA: {
|
||||
text: "Hire Workshop Facilitators",
|
||||
href: "/contact-us",
|
||||
icon: Lightbulb
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Facilitator Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Design Thinking Workshops specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "150+",
|
||||
label: "Workshops Facilitated",
|
||||
description: "Successful innovation sessions"
|
||||
},
|
||||
{
|
||||
value: "95%",
|
||||
label: "Participant Satisfaction",
|
||||
description: "Engaging workshop experience"
|
||||
},
|
||||
{
|
||||
value: "70%",
|
||||
label: "Solution Implementation",
|
||||
description: "Ideas brought to market"
|
||||
},
|
||||
{
|
||||
value: "500+",
|
||||
label: "Stakeholders Aligned",
|
||||
description: "Cross-functional collaboration"
|
||||
}
|
||||
],
|
||||
|
||||
// Design Thinking Workshops development process
|
||||
process: {
|
||||
title: "Our Design Thinking Workshop Process",
|
||||
subtitle: "From problem identification to actionable solutions",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Workshop Planning & Stakeholder Alignment",
|
||||
description: "Define workshop objectives, identify key participants, and create a customized agenda that addresses your specific challenges and goals.",
|
||||
icon: <Lightbulb className="w-8 h-8" />,
|
||||
details: [
|
||||
"Challenge definition and objective setting",
|
||||
"Stakeholder identification and preparation",
|
||||
"Custom workshop agenda and methodology design",
|
||||
"Pre-workshop research and materials preparation"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Empathize & Define Phase",
|
||||
description: "Guide participants through user empathy exercises and problem definition to ensure solutions are human-centered and address real needs.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"User persona development and empathy mapping",
|
||||
"Problem statement refinement and prioritization",
|
||||
"Stakeholder journey mapping and pain point identification",
|
||||
"Design challenge framing and opportunity areas"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Ideate & Prototype Phase",
|
||||
description: "Facilitate creative ideation sessions and rapid prototyping to generate innovative solutions and test concepts quickly.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Brainstorming and idea generation techniques",
|
||||
"Solution prioritization and concept selection",
|
||||
"Rapid prototyping and concept visualization",
|
||||
"Cross-functional collaboration and alignment"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Test & Implementation Planning",
|
||||
description: "Validate solutions through testing methods and create actionable implementation roadmaps with clear next steps and ownership.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Solution testing and validation methods",
|
||||
"Implementation roadmap and timeline creation",
|
||||
"Resource planning and team assignment",
|
||||
"Follow-up strategy and success metrics definition"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Design Thinking Workshops focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of design thinking workshops do you facilitate?",
|
||||
answer: "We facilitate various workshops including product innovation sessions, service design workshops, customer journey mapping, digital transformation planning, team alignment sessions, problem-solving workshops, and strategic planning using design thinking methodologies."
|
||||
},
|
||||
{
|
||||
question: "How do you customize workshops for different industries and challenges?",
|
||||
answer: "We tailor workshops based on industry context, company culture, specific challenges, and participant backgrounds. Our facilitators adapt methodologies, tools, and case studies to ensure relevance and maximum impact for your unique situation."
|
||||
},
|
||||
{
|
||||
question: "What is the typical duration and format of design thinking workshops?",
|
||||
answer: "Workshops range from half-day intensive sessions (4 hours) to multi-day programs (2-5 days). We offer in-person, virtual, and hybrid formats depending on your team's needs, with follow-up sessions for implementation support."
|
||||
},
|
||||
{
|
||||
question: "Who should participate in design thinking workshops?",
|
||||
answer: "Ideal participants include cross-functional team members, stakeholders, decision-makers, and end-users. We recommend 6-12 participants for optimal collaboration, including representatives from product, design, engineering, marketing, and business teams."
|
||||
},
|
||||
{
|
||||
question: "What outcomes can we expect from design thinking workshops?",
|
||||
answer: "Expected outcomes include validated problem statements, prioritized solution concepts, actionable prototypes, implementation roadmaps, aligned stakeholder vision, enhanced team collaboration skills, and a human-centered approach to innovation."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure workshop insights translate to real business results?",
|
||||
answer: "We provide detailed documentation, implementation guides, success metrics definition, and follow-up coaching sessions. Our approach includes stakeholder commitment planning and regular check-ins to ensure solutions progress from workshop to market reality."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireDesignThinkingWorkshopsDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with TeamCollaborationVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={TeamCollaborationVector}
|
||||
category={hireDesignThinkingWorkshopsDevelopersData.heroBanner.category}
|
||||
title={hireDesignThinkingWorkshopsDevelopersData.heroBanner.title}
|
||||
description={hireDesignThinkingWorkshopsDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireDesignThinkingWorkshopsDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireDesignThinkingWorkshopsDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireDesignThinkingWorkshopsDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireDesignThinkingWorkshopsDevelopersData.process.title}
|
||||
subtitle={hireDesignThinkingWorkshopsDevelopersData.process.subtitle}
|
||||
steps={hireDesignThinkingWorkshopsDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Design Thinking Workshops FAQs"
|
||||
subtitle="Everything you need to know about hiring design thinking workshop facilitators"
|
||||
faqs={hireDesignThinkingWorkshopsDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireEcommercePlatformDevelopers.tsx
Normal file
195
pages/HireEcommercePlatformDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { FullStackVector } from "../components/vectors/FullStackVector";
|
||||
import { ShoppingCart, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireEcommercePlatformDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire eCommerce Platform Developers",
|
||||
description: "Build powerful, scalable eCommerce platforms that drive sales and enhance customer experience. Our developers specialize in custom online stores, marketplaces, and B2B commerce solutions.",
|
||||
primaryCTA: {
|
||||
text: "Hire eCommerce Developers",
|
||||
href: "/contact-us",
|
||||
icon: ShoppingCart
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// eCommerce Platform specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "180+",
|
||||
label: "eCommerce Stores Built",
|
||||
description: "Successfully launched platforms"
|
||||
},
|
||||
{
|
||||
value: "$50M+",
|
||||
label: "Revenue Generated",
|
||||
description: "Across all eCommerce platforms"
|
||||
},
|
||||
{
|
||||
value: "99.8%",
|
||||
label: "Payment Success Rate",
|
||||
description: "Secure transaction processing"
|
||||
},
|
||||
{
|
||||
value: "3.2s",
|
||||
label: "Average Load Time",
|
||||
description: "Optimized for conversions"
|
||||
}
|
||||
],
|
||||
|
||||
// eCommerce Platform development process
|
||||
process: {
|
||||
title: "Our eCommerce Development Process",
|
||||
subtitle: "From concept to profitable online store",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "eCommerce Strategy & Planning",
|
||||
description: "Define your eCommerce goals, target audience, and platform requirements for optimal conversion.",
|
||||
icon: <ShoppingCart className="w-8 h-8" />,
|
||||
details: [
|
||||
"Business model and target market analysis",
|
||||
"Platform architecture and technology selection",
|
||||
"Payment gateway and shipping integration planning",
|
||||
"SEO and marketing strategy development"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Design & User Experience",
|
||||
description: "Create conversion-optimized designs with intuitive shopping experiences and mobile-first approach.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Conversion-focused UI/UX design",
|
||||
"Mobile-responsive design system",
|
||||
"Product catalog and checkout optimization",
|
||||
"Brand integration and visual identity"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Development & Integration",
|
||||
description: "Build secure, scalable eCommerce platform with payment processing and inventory management.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Custom eCommerce development",
|
||||
"Payment gateway integration",
|
||||
"Inventory and order management",
|
||||
"Third-party service integrations"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Launch & Optimization",
|
||||
description: "Deploy your eCommerce platform with analytics, SEO optimization, and continuous performance monitoring.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Performance optimization and testing",
|
||||
"SEO and conversion rate optimization",
|
||||
"Analytics and reporting setup",
|
||||
"Ongoing maintenance and updates"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// eCommerce Platform focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What eCommerce platforms and technologies do you work with?",
|
||||
answer: "We develop custom eCommerce solutions using modern frameworks like React, Vue.js, and Next.js, as well as platforms like Shopify Plus, WooCommerce, Magento, and headless commerce solutions. We choose the best technology based on your specific requirements."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure secure payment processing and PCI compliance?",
|
||||
answer: "We integrate with trusted payment gateways like Stripe, PayPal, and others that handle PCI compliance. We implement secure payment flows, SSL encryption, fraud detection, and follow industry best practices for handling sensitive customer data."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate with existing inventory and ERP systems?",
|
||||
answer: "Yes, we specialize in system integration and can connect your eCommerce platform with existing inventory management, ERP, CRM, and accounting systems through APIs and custom integration solutions to streamline your operations."
|
||||
},
|
||||
{
|
||||
question: "How do you optimize eCommerce sites for mobile and conversions?",
|
||||
answer: "We implement mobile-first responsive design, optimize page loading speeds, streamline checkout processes, implement progressive web app features, and use A/B testing to continuously improve conversion rates and user experience."
|
||||
},
|
||||
{
|
||||
question: "What ongoing support do you provide for eCommerce platforms?",
|
||||
answer: "We provide comprehensive ongoing support including security updates, performance monitoring, inventory management, payment processing support, feature enhancements, and 24/7 technical support to ensure your store runs smoothly."
|
||||
},
|
||||
{
|
||||
question: "How do you handle scalability for growing eCommerce businesses?",
|
||||
answer: "We build eCommerce platforms with scalable architecture using cloud infrastructure, CDNs, caching strategies, and microservices that can handle traffic spikes, growing product catalogs, and increasing transaction volumes as your business grows."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireEcommercePlatformDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with FullStackVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={FullStackVector}
|
||||
category={hireEcommercePlatformDevelopersData.heroBanner.category}
|
||||
title={hireEcommercePlatformDevelopersData.heroBanner.title}
|
||||
description={hireEcommercePlatformDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireEcommercePlatformDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireEcommercePlatformDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireEcommercePlatformDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireEcommercePlatformDevelopersData.process.title}
|
||||
subtitle={hireEcommercePlatformDevelopersData.process.subtitle}
|
||||
steps={hireEcommercePlatformDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="eCommerce Development FAQs"
|
||||
subtitle="Everything you need to know about hiring eCommerce platform developers"
|
||||
faqs={hireEcommercePlatformDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireEnterpriseSoftwareDevelopers.tsx
Normal file
195
pages/HireEnterpriseSoftwareDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { FullStackVector } from "../components/vectors/FullStackVector";
|
||||
import { Building2, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireEnterpriseSoftwareDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Enterprise Software Solutions Developers",
|
||||
description: "Build robust, scalable enterprise software systems that streamline business operations and drive digital transformation. Our developers specialize in large-scale enterprise architectures and mission-critical applications.",
|
||||
primaryCTA: {
|
||||
text: "Hire Enterprise Developers",
|
||||
href: "/contact-us",
|
||||
icon: Building2
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Enterprise Software specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "150+",
|
||||
label: "Enterprise Projects",
|
||||
description: "Large-scale implementations"
|
||||
},
|
||||
{
|
||||
value: "99.8%",
|
||||
label: "System Uptime",
|
||||
description: "Enterprise-grade reliability"
|
||||
},
|
||||
{
|
||||
value: "10M+",
|
||||
label: "Users Supported",
|
||||
description: "Concurrent enterprise users"
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Support Coverage",
|
||||
description: "Round-the-clock monitoring"
|
||||
}
|
||||
],
|
||||
|
||||
// Enterprise Software development process
|
||||
process: {
|
||||
title: "Our Enterprise Software Development Process",
|
||||
subtitle: "From enterprise architecture to production deployment",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Enterprise Architecture & Planning",
|
||||
description: "Analyze enterprise requirements and design scalable architecture that supports your business goals and future growth.",
|
||||
icon: <Building2 className="w-8 h-8" />,
|
||||
details: [
|
||||
"Enterprise requirements analysis",
|
||||
"Scalable architecture design and planning",
|
||||
"Technology stack selection and evaluation",
|
||||
"Integration strategy and roadmap development"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Development & Implementation",
|
||||
description: "Build enterprise-grade software using industry best practices, ensuring security, performance, and scalability.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Modular enterprise application development",
|
||||
"Microservices architecture implementation",
|
||||
"Security protocols and compliance integration",
|
||||
"Performance optimization and load testing"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Integration & Testing",
|
||||
description: "Seamlessly integrate with existing enterprise systems and conduct comprehensive testing across all environments.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Enterprise system integration and APIs",
|
||||
"Comprehensive testing and quality assurance",
|
||||
"User acceptance testing and validation",
|
||||
"Security audits and compliance verification"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Deployment & Support",
|
||||
description: "Deploy enterprise solutions with minimal disruption and provide ongoing support and maintenance.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Phased deployment and rollout strategy",
|
||||
"Staff training and change management",
|
||||
"24/7 monitoring and support setup",
|
||||
"Continuous optimization and updates"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Enterprise Software focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of enterprise software solutions can you develop?",
|
||||
answer: "We develop comprehensive enterprise solutions including ERP systems, CRM platforms, supply chain management, business intelligence dashboards, workflow automation tools, document management systems, and custom enterprise applications tailored to your industry needs."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure enterprise-level security and compliance?",
|
||||
answer: "We implement enterprise-grade security measures including multi-factor authentication, role-based access control, data encryption, audit trails, and compliance with standards like SOX, HIPAA, GDPR, and industry-specific regulations."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate with our existing enterprise systems?",
|
||||
answer: "Yes, we specialize in enterprise integration using APIs, middleware, ESB (Enterprise Service Bus), and modern integration platforms to connect with existing ERP, CRM, databases, and third-party enterprise applications seamlessly."
|
||||
},
|
||||
{
|
||||
question: "What technologies do you use for enterprise software development?",
|
||||
answer: "We use enterprise-proven technologies including Java, .NET, Python, Node.js, microservices architecture, cloud platforms (AWS, Azure, GCP), enterprise databases (Oracle, SQL Server, PostgreSQL), and modern frameworks designed for scalability."
|
||||
},
|
||||
{
|
||||
question: "How do you handle enterprise scalability and performance requirements?",
|
||||
answer: "We design solutions with horizontal and vertical scaling capabilities, implement load balancing, use distributed architectures, optimize database performance, and employ caching strategies to handle millions of concurrent users and high transaction volumes."
|
||||
},
|
||||
{
|
||||
question: "Do you provide ongoing enterprise support and maintenance?",
|
||||
answer: "Yes, we offer comprehensive enterprise support including 24/7 monitoring, proactive maintenance, regular updates, performance optimization, security patches, and dedicated support teams to ensure optimal system performance."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireEnterpriseSoftwareDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with FullStackVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={FullStackVector}
|
||||
category={hireEnterpriseSoftwareDevelopersData.heroBanner.category}
|
||||
title={hireEnterpriseSoftwareDevelopersData.heroBanner.title}
|
||||
description={hireEnterpriseSoftwareDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireEnterpriseSoftwareDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireEnterpriseSoftwareDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireEnterpriseSoftwareDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireEnterpriseSoftwareDevelopersData.process.title}
|
||||
subtitle={hireEnterpriseSoftwareDevelopersData.process.subtitle}
|
||||
steps={hireEnterpriseSoftwareDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Enterprise Software Development FAQs"
|
||||
subtitle="Everything you need to know about hiring enterprise software developers"
|
||||
faqs={hireEnterpriseSoftwareDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireNativeAppDevelopers.tsx
Normal file
195
pages/HireNativeAppDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { DeveloperSkillsVector } from "../components/vectors/DeveloperSkillsVector";
|
||||
import { Smartphone, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireNativeAppDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Native App Developers",
|
||||
description: "Get access to specialized native app developers for iOS and Android platforms. Build high-performance applications with platform-specific optimizations and native user experiences.",
|
||||
primaryCTA: {
|
||||
text: "Hire Native Developers",
|
||||
href: "/contact-us",
|
||||
icon: Smartphone
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Native development specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "200+",
|
||||
label: "Native Apps Delivered",
|
||||
description: "iOS and Android applications"
|
||||
},
|
||||
{
|
||||
value: "99%",
|
||||
label: "Performance Optimization",
|
||||
description: "Native speed and efficiency"
|
||||
},
|
||||
{
|
||||
value: "35M+",
|
||||
label: "Native Downloads",
|
||||
description: "Across both platforms"
|
||||
},
|
||||
{
|
||||
value: "4.9/5",
|
||||
label: "User Experience Rating",
|
||||
description: "Platform-native feel"
|
||||
}
|
||||
],
|
||||
|
||||
// Native development process
|
||||
process: {
|
||||
title: "Our Native Development Process",
|
||||
subtitle: "Platform-specific excellence",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Platform-Specific Strategy",
|
||||
description: "Define native development approach for iOS and Android with platform-optimized features.",
|
||||
icon: <Smartphone className="w-8 h-8" />,
|
||||
details: [
|
||||
"iOS Swift/SwiftUI strategy",
|
||||
"Android Kotlin/Java approach",
|
||||
"Platform-specific feature planning",
|
||||
"Native API integration roadmap"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Native UI/UX Design",
|
||||
description: "Create platform-specific designs following iOS Human Interface and Android Material Design guidelines.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"iOS-specific interface patterns",
|
||||
"Android Material Design implementation",
|
||||
"Platform-native animations",
|
||||
"Accessibility compliance"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Native Development & Optimization",
|
||||
description: "Build applications using native languages and SDKs with maximum performance optimization.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Swift/Objective-C for iOS",
|
||||
"Kotlin/Java for Android",
|
||||
"Native SDK utilization",
|
||||
"Platform-specific optimizations"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Native Store Optimization",
|
||||
description: "Optimize for each platform's app store with native features and compliance requirements.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Platform-specific ASO",
|
||||
"Native feature showcasing",
|
||||
"Store guideline compliance",
|
||||
"Platform-optimized updates"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Native development focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What are the advantages of native app development?",
|
||||
answer: "Native apps offer superior performance, full access to platform APIs, better security, optimal user experience following platform guidelines, faster execution, and seamless integration with device features and operating system capabilities."
|
||||
},
|
||||
{
|
||||
question: "Do you develop for both iOS and Android natively?",
|
||||
answer: "Yes, we have dedicated iOS developers (Swift, SwiftUI, Objective-C) and Android developers (Kotlin, Java) who specialize in their respective platforms, ensuring optimal native performance and user experience on each platform."
|
||||
},
|
||||
{
|
||||
question: "How do you handle the increased development cost of native apps?",
|
||||
answer: "While native development requires separate codebases, we optimize costs through efficient project management, code reuse where possible, parallel development teams, and focusing on platform-specific features that provide maximum value."
|
||||
},
|
||||
{
|
||||
question: "Can native apps integrate with all device features?",
|
||||
answer: "Yes, native apps have complete access to all device capabilities including camera, GPS, sensors, biometric authentication, push notifications, background processing, and platform-specific features like iOS Shortcuts or Android widgets."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure consistent functionality across iOS and Android native apps?",
|
||||
answer: "We maintain consistent core functionality through detailed specification documents, shared testing protocols, synchronized feature development, and coordinated release cycles while optimizing each platform's unique capabilities."
|
||||
},
|
||||
{
|
||||
question: "What native development tools and frameworks do you use?",
|
||||
answer: "For iOS: Xcode, Swift, SwiftUI, UIKit, Core Data. For Android: Android Studio, Kotlin, Jetpack Compose, Android SDK, Room Database. We use the latest native tools and frameworks for optimal development experience."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireNativeAppDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with DeveloperSkillsVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={DeveloperSkillsVector}
|
||||
category={hireNativeAppDevelopersData.heroBanner.category}
|
||||
title={hireNativeAppDevelopersData.heroBanner.title}
|
||||
description={hireNativeAppDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireNativeAppDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireNativeAppDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireNativeAppDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireNativeAppDevelopersData.process.title}
|
||||
subtitle={hireNativeAppDevelopersData.process.subtitle}
|
||||
steps={hireNativeAppDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Native Development FAQs"
|
||||
subtitle="Everything you need to know about hiring native app developers"
|
||||
faqs={hireNativeAppDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HirePWADevelopers.tsx
Normal file
195
pages/HirePWADevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { FrontendVector } from "../components/vectors/FrontendVector";
|
||||
import { Smartphone, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hirePWADevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire PWA Developers",
|
||||
description: "Get access to Progressive Web App specialists who build app-like experiences that work across all devices. Combine web accessibility with native app functionality.",
|
||||
primaryCTA: {
|
||||
text: "Hire PWA Developers",
|
||||
href: "/contact-us",
|
||||
icon: Smartphone
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// PWA-specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "80+",
|
||||
label: "PWAs Delivered",
|
||||
description: "Progressive web applications"
|
||||
},
|
||||
{
|
||||
value: "70%",
|
||||
label: "Development Cost Savings",
|
||||
description: "Compared to native apps"
|
||||
},
|
||||
{
|
||||
value: "15M+",
|
||||
label: "PWA Installations",
|
||||
description: "Across all platforms"
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "Cross-Platform Compatibility",
|
||||
description: "Works on all modern browsers"
|
||||
}
|
||||
],
|
||||
|
||||
// PWA development process
|
||||
process: {
|
||||
title: "Our PWA Development Process",
|
||||
subtitle: "Modern web apps with native capabilities",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "PWA Strategy & Planning",
|
||||
description: "Define Progressive Web App features, offline capabilities, and cross-platform compatibility requirements.",
|
||||
icon: <Smartphone className="w-8 h-8" />,
|
||||
details: [
|
||||
"PWA capability assessment",
|
||||
"Offline-first strategy planning",
|
||||
"Service worker architecture",
|
||||
"Progressive enhancement roadmap"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Responsive Design & UX",
|
||||
description: "Create responsive, app-like interfaces that work seamlessly across desktop, tablet, and mobile devices.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Mobile-first responsive design",
|
||||
"App-like interface patterns",
|
||||
"Touch-friendly interactions",
|
||||
"Adaptive layout systems"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "PWA Development & Optimization",
|
||||
description: "Build Progressive Web Apps with modern web technologies, service workers, and performance optimization.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Service worker implementation",
|
||||
"Offline functionality",
|
||||
"Push notification support",
|
||||
"Performance optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Installation & Distribution",
|
||||
description: "Enable app-like installation experience and optimize for discoverability across platforms.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Web App Manifest configuration",
|
||||
"Install prompts optimization",
|
||||
"App store submission (if applicable)",
|
||||
"SEO and discovery optimization"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// PWA-focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What technologies do your PWA developers use?",
|
||||
answer: "Our PWA developers are experts in modern web technologies including React, Vue.js, Angular, TypeScript, Service Workers, Web App Manifest, IndexedDB, and progressive enhancement techniques to create app-like web experiences."
|
||||
},
|
||||
{
|
||||
question: "How do PWAs compare to native mobile apps?",
|
||||
answer: "PWAs offer 70-80% of native app functionality with significant advantages: no app store approval needed, automatic updates, smaller size, better SEO, and cross-platform compatibility. They're ideal for content-driven apps and e-commerce."
|
||||
},
|
||||
{
|
||||
question: "Can PWAs work offline and send push notifications?",
|
||||
answer: "Yes, PWAs can work offline through Service Workers for caching strategies, background sync for data updates, and support push notifications across platforms. They provide native-like features without requiring app store installation."
|
||||
},
|
||||
{
|
||||
question: "How do you optimize PWA performance and loading speed?",
|
||||
answer: "We implement performance best practices including lazy loading, code splitting, efficient caching strategies, image optimization, critical CSS inlining, and progressive loading to ensure fast, smooth user experiences."
|
||||
},
|
||||
{
|
||||
question: "Can PWAs be submitted to app stores?",
|
||||
answer: "Yes, PWAs can be submitted to Google Play Store directly, and to Apple App Store and Microsoft Store with some additional packaging. This provides the best of both worlds - web accessibility and app store presence."
|
||||
},
|
||||
{
|
||||
question: "How do you handle PWA installation and user engagement?",
|
||||
answer: "We implement smart install prompts, create engaging onboarding experiences, use web push notifications strategically, and optimize the add-to-home-screen experience to maximize user adoption and retention."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HirePWADevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with FrontendVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={FrontendVector}
|
||||
category={hirePWADevelopersData.heroBanner.category}
|
||||
title={hirePWADevelopersData.heroBanner.title}
|
||||
description={hirePWADevelopersData.heroBanner.description}
|
||||
primaryCTA={hirePWADevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hirePWADevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hirePWADevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hirePWADevelopersData.process.title}
|
||||
subtitle={hirePWADevelopersData.process.subtitle}
|
||||
steps={hirePWADevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="PWA Development FAQs"
|
||||
subtitle="Everything you need to know about hiring PWA developers"
|
||||
faqs={hirePWADevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireProductModernizationDevelopers.tsx
Normal file
195
pages/HireProductModernizationDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { ProjectTimelineVector } from "../components/vectors/ProjectTimelineVector";
|
||||
import { RefreshCw, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireProductModernizationDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Product Modernization Developers",
|
||||
description: "Transform legacy systems into modern, scalable applications with expert modernization developers. Upgrade technology stacks, improve performance, and enhance user experience while maintaining business continuity.",
|
||||
primaryCTA: {
|
||||
text: "Hire Modernization Experts",
|
||||
href: "/contact-us",
|
||||
icon: RefreshCw
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Product Modernization specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "100+",
|
||||
label: "Modernization Projects",
|
||||
description: "Legacy systems transformed"
|
||||
},
|
||||
{
|
||||
value: "75%",
|
||||
label: "Performance Improvement",
|
||||
description: "Average speed increase"
|
||||
},
|
||||
{
|
||||
value: "60%",
|
||||
label: "Cost Reduction",
|
||||
description: "Operational cost savings"
|
||||
},
|
||||
{
|
||||
value: "Zero",
|
||||
label: "Downtime Migrations",
|
||||
description: "Seamless system transitions"
|
||||
}
|
||||
],
|
||||
|
||||
// Product Modernization development process
|
||||
process: {
|
||||
title: "Our Product Modernization Process",
|
||||
subtitle: "From legacy assessment to modern deployment",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Legacy System Assessment",
|
||||
description: "Comprehensive analysis of existing systems, identifying modernization opportunities and creating detailed transformation roadmaps.",
|
||||
icon: <RefreshCw className="w-8 h-8" />,
|
||||
details: [
|
||||
"Legacy code and architecture assessment",
|
||||
"Technology stack evaluation and analysis",
|
||||
"Business impact and risk assessment",
|
||||
"Modernization strategy and roadmap planning"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Modern Architecture Design",
|
||||
description: "Design new system architecture using modern technologies, ensuring scalability, maintainability, and performance improvements.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Modern architecture design and planning",
|
||||
"Technology stack selection and migration",
|
||||
"Microservices and cloud-native design",
|
||||
"API design and integration strategy"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Incremental Migration & Development",
|
||||
description: "Execute phased migration approach minimizing business disruption while building and testing new modernized components.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Phased migration strategy execution",
|
||||
"Data migration and validation processes",
|
||||
"Feature parity testing and validation",
|
||||
"User acceptance testing and feedback"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Deployment & Optimization",
|
||||
description: "Deploy modernized systems with comprehensive monitoring, training, and ongoing optimization for maximum business value.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Production deployment and cutover",
|
||||
"Performance monitoring and optimization",
|
||||
"User training and change management",
|
||||
"Ongoing support and enhancement"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Product Modernization focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of legacy systems can you modernize?",
|
||||
answer: "We modernize various legacy systems including mainframe applications, desktop software, outdated web applications, monolithic architectures, and systems built on obsolete technologies like COBOL, Visual Basic, legacy Java, and outdated .NET frameworks."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure zero downtime during modernization?",
|
||||
answer: "We use strategies like blue-green deployments, canary releases, feature flags, gradual data migration, parallel system operation, and comprehensive rollback plans to ensure business continuity throughout the modernization process."
|
||||
},
|
||||
{
|
||||
question: "What modern technologies do you migrate legacy systems to?",
|
||||
answer: "We migrate to modern technologies including cloud-native architectures (AWS, Azure, GCP), microservices, containerization (Docker, Kubernetes), modern frameworks (React, Angular, Node.js), and databases optimized for performance and scalability."
|
||||
},
|
||||
{
|
||||
question: "How do you handle data migration and integrity?",
|
||||
answer: "We implement comprehensive data migration strategies including data mapping, transformation scripts, validation processes, backup systems, and gradual migration approaches to ensure data integrity and minimize loss during modernization."
|
||||
},
|
||||
{
|
||||
question: "What is your approach to maintaining business functionality during modernization?",
|
||||
answer: "We prioritize business continuity through incremental modernization, maintaining parallel systems during transition, comprehensive testing, user training, and ensuring feature parity before decommissioning legacy systems."
|
||||
},
|
||||
{
|
||||
question: "How do you measure the success of modernization projects?",
|
||||
answer: "We measure success through performance improvements, cost reduction, user satisfaction, system reliability, maintainability metrics, security enhancements, and business value delivery against predefined modernization goals."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireProductModernizationDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with ProjectTimelineVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={ProjectTimelineVector}
|
||||
category={hireProductModernizationDevelopersData.heroBanner.category}
|
||||
title={hireProductModernizationDevelopersData.heroBanner.title}
|
||||
description={hireProductModernizationDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireProductModernizationDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireProductModernizationDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireProductModernizationDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireProductModernizationDevelopersData.process.title}
|
||||
subtitle={hireProductModernizationDevelopersData.process.subtitle}
|
||||
steps={hireProductModernizationDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Product Modernization FAQs"
|
||||
subtitle="Everything you need to know about hiring product modernization developers"
|
||||
faqs={hireProductModernizationDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireSaaSProductDevelopers.tsx
Normal file
195
pages/HireSaaSProductDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { TechStackVisualization } from "../components/vectors/TechStackVisualization";
|
||||
import { Layers, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireSaaSProductDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire SaaS Product Engineering Developers",
|
||||
description: "Build scalable Software-as-a-Service platforms with our expert developers. We specialize in multi-tenant architecture, subscription management, and enterprise-grade SaaS solutions.",
|
||||
primaryCTA: {
|
||||
text: "Hire SaaS Developers",
|
||||
href: "/contact-us",
|
||||
icon: Layers
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// SaaS Product specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "150+",
|
||||
label: "SaaS Platforms Built",
|
||||
description: "Successfully launched products"
|
||||
},
|
||||
{
|
||||
value: "99.5%",
|
||||
label: "Platform Uptime",
|
||||
description: "Enterprise-grade reliability"
|
||||
},
|
||||
{
|
||||
value: "10M+",
|
||||
label: "Users Supported",
|
||||
description: "Across all SaaS platforms"
|
||||
},
|
||||
{
|
||||
value: "5x",
|
||||
label: "Faster Time-to-Market",
|
||||
description: "With proven frameworks"
|
||||
}
|
||||
],
|
||||
|
||||
// SaaS Product development process
|
||||
process: {
|
||||
title: "Our SaaS Product Development Process",
|
||||
subtitle: "From MVP to enterprise-scale platform",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "SaaS Architecture & Planning",
|
||||
description: "Design scalable multi-tenant architecture with subscription management and enterprise features.",
|
||||
icon: <Layers className="w-8 h-8" />,
|
||||
details: [
|
||||
"Multi-tenant architecture design",
|
||||
"Subscription and billing strategy",
|
||||
"Scalability and performance planning",
|
||||
"Security and compliance framework"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "MVP Development & Testing",
|
||||
description: "Build and validate your SaaS MVP with core features and user feedback integration.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Core feature development",
|
||||
"User authentication and management",
|
||||
"Basic subscription handling",
|
||||
"Analytics and monitoring setup"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Feature Enhancement & Scaling",
|
||||
description: "Expand functionality, optimize performance, and prepare for enterprise customers.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Advanced feature development",
|
||||
"Performance optimization",
|
||||
"Enterprise integrations",
|
||||
"Advanced analytics and reporting"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Enterprise Launch & Growth",
|
||||
description: "Deploy enterprise-ready platform with advanced security, compliance, and support systems.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Enterprise security implementation",
|
||||
"Compliance certifications",
|
||||
"Customer success tools",
|
||||
"Continuous optimization"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// SaaS Product focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What makes SaaS development different from regular web applications?",
|
||||
answer: "SaaS development requires multi-tenant architecture, subscription management, advanced security, compliance features, and scalability to serve thousands of users. We build platforms that can grow from startup to enterprise scale."
|
||||
},
|
||||
{
|
||||
question: "How do you handle multi-tenant architecture and data isolation?",
|
||||
answer: "We implement secure multi-tenant architecture with proper data isolation using database-level separation or schema-based isolation. Each tenant's data is completely secure and isolated while maintaining optimal performance and cost efficiency."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate subscription billing and payment processing?",
|
||||
answer: "Yes, we integrate with leading payment platforms like Stripe, PayPal, and others to handle subscription billing, recurring payments, usage-based billing, and complex pricing models including freemium, tiered, and enterprise plans."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure SaaS platform security and compliance?",
|
||||
answer: "We implement enterprise-grade security including encryption, SSO, RBAC, audit trails, and compliance with standards like SOC 2, GDPR, HIPAA, and industry-specific regulations. Security is built into every layer of the platform."
|
||||
},
|
||||
{
|
||||
question: "What technologies do you use for SaaS development?",
|
||||
answer: "We use modern cloud-native technologies including React/Vue.js, Node.js, Python, microservices architecture, Docker/Kubernetes, AWS/Azure/GCP, and databases optimized for multi-tenant applications."
|
||||
},
|
||||
{
|
||||
question: "How do you handle scaling and performance optimization?",
|
||||
answer: "We design SaaS platforms with horizontal scalability using microservices, auto-scaling infrastructure, CDNs, caching strategies, and database optimization to handle growing user bases and increasing data volumes efficiently."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireSaaSProductDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with TechStackVisualization */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={TechStackVisualization}
|
||||
category={hireSaaSProductDevelopersData.heroBanner.category}
|
||||
title={hireSaaSProductDevelopersData.heroBanner.title}
|
||||
description={hireSaaSProductDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireSaaSProductDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireSaaSProductDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireSaaSProductDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireSaaSProductDevelopersData.process.title}
|
||||
subtitle={hireSaaSProductDevelopersData.process.subtitle}
|
||||
steps={hireSaaSProductDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="SaaS Product Development FAQs"
|
||||
subtitle="Everything you need to know about hiring SaaS product developers"
|
||||
faqs={hireSaaSProductDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireSystemArchitectureDevOpsDevelopers.tsx
Normal file
195
pages/HireSystemArchitectureDevOpsDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { BackendVector } from "../components/vectors/BackendVector";
|
||||
import { Server, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireSystemArchitectureDevOpsDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire System Architecture & DevOps Developers",
|
||||
description: "Build robust, scalable infrastructure and streamline development workflows with expert system architects and DevOps engineers. Optimize deployment pipelines, cloud infrastructure, and system reliability.",
|
||||
primaryCTA: {
|
||||
text: "Hire DevOps Experts",
|
||||
href: "/contact-us",
|
||||
icon: Server
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// System Architecture & DevOps specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "200+",
|
||||
label: "Infrastructure Projects",
|
||||
description: "Cloud and on-premise setups"
|
||||
},
|
||||
{
|
||||
value: "99.99%",
|
||||
label: "System Uptime",
|
||||
description: "High-availability architecture"
|
||||
},
|
||||
{
|
||||
value: "80%",
|
||||
label: "Deployment Speed",
|
||||
description: "Faster release cycles"
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Monitoring Coverage",
|
||||
description: "Continuous system monitoring"
|
||||
}
|
||||
],
|
||||
|
||||
// System Architecture & DevOps development process
|
||||
process: {
|
||||
title: "Our System Architecture & DevOps Process",
|
||||
subtitle: "From infrastructure design to automated deployment",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Architecture Assessment & Design",
|
||||
description: "Analyze current infrastructure and design scalable, resilient system architecture tailored to your requirements.",
|
||||
icon: <Server className="w-8 h-8" />,
|
||||
details: [
|
||||
"Current infrastructure assessment and audit",
|
||||
"Scalable architecture design and planning",
|
||||
"Technology stack evaluation and selection",
|
||||
"Security and compliance architecture integration"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "DevOps Pipeline Implementation",
|
||||
description: "Build automated CI/CD pipelines, infrastructure as code, and deployment automation for faster, reliable releases.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"CI/CD pipeline setup and automation",
|
||||
"Infrastructure as Code (IaC) implementation",
|
||||
"Container orchestration and management",
|
||||
"Automated testing and quality gates"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Cloud Migration & Optimization",
|
||||
description: "Migrate to cloud platforms and optimize infrastructure for performance, cost-efficiency, and scalability.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Cloud platform migration and setup",
|
||||
"Auto-scaling and load balancing configuration",
|
||||
"Cost optimization and resource management",
|
||||
"Disaster recovery and backup strategies"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Monitoring & Maintenance",
|
||||
description: "Implement comprehensive monitoring, alerting, and ongoing optimization for optimal system performance.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Real-time monitoring and alerting setup",
|
||||
"Performance optimization and tuning",
|
||||
"Security monitoring and incident response",
|
||||
"Continuous improvement and system updates"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// System Architecture & DevOps focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What cloud platforms and DevOps tools do your developers work with?",
|
||||
answer: "Our developers are certified in AWS, Azure, Google Cloud, and work with tools like Docker, Kubernetes, Jenkins, GitLab CI/CD, Terraform, Ansible, Prometheus, Grafana, ELK Stack, and many other modern DevOps technologies."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure system security and compliance in DevOps pipelines?",
|
||||
answer: "We implement security best practices including automated security scanning, secrets management, infrastructure compliance checks, vulnerability assessments, and DevSecOps practices to ensure secure development and deployment processes."
|
||||
},
|
||||
{
|
||||
question: "Can you help migrate our legacy infrastructure to the cloud?",
|
||||
answer: "Yes, we specialize in cloud migration strategies including lift-and-shift, re-platforming, and cloud-native transformations. We ensure minimal downtime and optimize your infrastructure for cloud-native benefits."
|
||||
},
|
||||
{
|
||||
question: "How do you implement Infrastructure as Code (IaC)?",
|
||||
answer: "We use tools like Terraform, CloudFormation, ARM templates, and Pulumi to define infrastructure as code, enabling version control, automated provisioning, consistent environments, and easier disaster recovery."
|
||||
},
|
||||
{
|
||||
question: "What monitoring and logging solutions do you implement?",
|
||||
answer: "We implement comprehensive monitoring using tools like Prometheus, Grafana, DataDog, New Relic, ELK Stack (Elasticsearch, Logstash, Kibana), and cloud-native monitoring solutions for real-time visibility and alerting."
|
||||
},
|
||||
{
|
||||
question: "How do you optimize system performance and reduce costs?",
|
||||
answer: "We implement auto-scaling, right-sizing resources, cost monitoring, performance optimization, caching strategies, and regular infrastructure audits to ensure optimal performance while minimizing operational costs."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireSystemArchitectureDevOpsDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with BackendVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={BackendVector}
|
||||
category={hireSystemArchitectureDevOpsDevelopersData.heroBanner.category}
|
||||
title={hireSystemArchitectureDevOpsDevelopersData.heroBanner.title}
|
||||
description={hireSystemArchitectureDevOpsDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireSystemArchitectureDevOpsDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireSystemArchitectureDevOpsDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireSystemArchitectureDevOpsDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireSystemArchitectureDevOpsDevelopersData.process.title}
|
||||
subtitle={hireSystemArchitectureDevOpsDevelopersData.process.subtitle}
|
||||
steps={hireSystemArchitectureDevOpsDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="System Architecture & DevOps FAQs"
|
||||
subtitle="Everything you need to know about hiring system architecture & DevOps developers"
|
||||
faqs={hireSystemArchitectureDevOpsDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireThirdPartyIntegrationsDevelopers.tsx
Normal file
195
pages/HireThirdPartyIntegrationsDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { TeamCollaborationVector } from "../components/vectors/TeamCollaborationVector";
|
||||
import { Link, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireThirdPartyIntegrationsDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Third-Party Integrations Developers",
|
||||
description: "Connect your systems seamlessly with expert integration developers. Streamline workflows, automate data exchange, and enhance functionality through robust third-party API integrations and middleware solutions.",
|
||||
primaryCTA: {
|
||||
text: "Hire Integration Experts",
|
||||
href: "/contact-us",
|
||||
icon: Link
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Third-Party Integrations specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "500+",
|
||||
label: "API Integrations",
|
||||
description: "Successful third-party connections"
|
||||
},
|
||||
{
|
||||
value: "99.5%",
|
||||
label: "Integration Uptime",
|
||||
description: "Reliable data synchronization"
|
||||
},
|
||||
{
|
||||
value: "50+",
|
||||
label: "Platform Integrations",
|
||||
description: "Different systems connected"
|
||||
},
|
||||
{
|
||||
value: "Real-time",
|
||||
label: "Data Sync",
|
||||
description: "Live data synchronization"
|
||||
}
|
||||
],
|
||||
|
||||
// Third-Party Integrations development process
|
||||
process: {
|
||||
title: "Our Third-Party Integration Process",
|
||||
subtitle: "From API analysis to seamless system connectivity",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Integration Planning & Analysis",
|
||||
description: "Analyze your systems and third-party requirements to design optimal integration architecture and data flow strategies.",
|
||||
icon: <Link className="w-8 h-8" />,
|
||||
details: [
|
||||
"System architecture and API analysis",
|
||||
"Integration requirements gathering",
|
||||
"Data mapping and transformation planning",
|
||||
"Security and authentication strategy design"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "API Development & Implementation",
|
||||
description: "Build robust APIs and integration layers that connect your systems with third-party services efficiently and securely.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Custom API development and middleware",
|
||||
"Third-party API integration and mapping",
|
||||
"Data transformation and validation logic",
|
||||
"Authentication and security implementation"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Testing & Validation",
|
||||
description: "Comprehensive testing of integrations including data flow, error handling, and performance under various conditions.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Integration testing and validation",
|
||||
"Error handling and fallback mechanisms",
|
||||
"Performance and load testing",
|
||||
"Security and data integrity verification"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Deployment & Monitoring",
|
||||
description: "Deploy integrations with monitoring systems to ensure continuous data flow and proactive issue detection.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Production deployment and configuration",
|
||||
"Real-time monitoring and alerting setup",
|
||||
"Performance optimization and scaling",
|
||||
"Ongoing maintenance and support"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Third-Party Integrations focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of third-party integrations can you implement?",
|
||||
answer: "We implement various integrations including payment gateways (Stripe, PayPal), CRM systems (Salesforce, HubSpot), ERP platforms, social media APIs, marketing automation tools, analytics platforms, communication APIs, and custom business applications."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure data security in third-party integrations?",
|
||||
answer: "We implement robust security measures including OAuth 2.0, API key management, data encryption in transit and at rest, secure webhooks, rate limiting, and compliance with data protection regulations like GDPR and CCPA."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate with legacy systems and modern APIs?",
|
||||
answer: "Yes, we have expertise in both legacy system integration using protocols like SOAP, XML-RPC, and file-based transfers, as well as modern REST APIs, GraphQL, and real-time integrations using WebSockets and webhooks."
|
||||
},
|
||||
{
|
||||
question: "How do you handle API rate limits and failures?",
|
||||
answer: "We implement retry mechanisms, exponential backoff strategies, request queuing, caching for frequently accessed data, circuit breakers for failed services, and graceful degradation to ensure system reliability."
|
||||
},
|
||||
{
|
||||
question: "What integration platforms and tools do you use?",
|
||||
answer: "We work with integration platforms like Zapier, MuleSoft, Azure Logic Apps, AWS API Gateway, Postman, and custom middleware solutions. We also use tools like Apache Kafka for real-time data streaming and message queues for reliable processing."
|
||||
},
|
||||
{
|
||||
question: "How do you monitor and maintain third-party integrations?",
|
||||
answer: "We implement comprehensive monitoring using tools like API monitoring dashboards, error tracking, performance metrics, webhook reliability checks, and automated alerts for integration failures or performance degradation."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireThirdPartyIntegrationsDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with TeamCollaborationVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={TeamCollaborationVector}
|
||||
category={hireThirdPartyIntegrationsDevelopersData.heroBanner.category}
|
||||
title={hireThirdPartyIntegrationsDevelopersData.heroBanner.title}
|
||||
description={hireThirdPartyIntegrationsDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireThirdPartyIntegrationsDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireThirdPartyIntegrationsDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireThirdPartyIntegrationsDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireThirdPartyIntegrationsDevelopersData.process.title}
|
||||
subtitle={hireThirdPartyIntegrationsDevelopersData.process.subtitle}
|
||||
steps={hireThirdPartyIntegrationsDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Third-Party Integrations FAQs"
|
||||
subtitle="Everything you need to know about hiring third-party integration developers"
|
||||
faqs={hireThirdPartyIntegrationsDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireUserResearchTestingDevelopers.tsx
Normal file
195
pages/HireUserResearchTestingDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { DeveloperSkillsVector } from "../components/vectors/DeveloperSkillsVector";
|
||||
import { Search, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireUserResearchTestingDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Researchers",
|
||||
title: "Hire User Research & Testing Developers",
|
||||
description: "Make data-driven design decisions with expert user researchers who uncover deep user insights, validate concepts, and optimize experiences through comprehensive research and testing methodologies.",
|
||||
primaryCTA: {
|
||||
text: "Hire UX Researchers",
|
||||
href: "/contact-us",
|
||||
icon: Search
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Researcher Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// User Research & Testing specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "400+",
|
||||
label: "Research Studies",
|
||||
description: "Comprehensive user insights"
|
||||
},
|
||||
{
|
||||
value: "85%",
|
||||
label: "Accuracy Improvement",
|
||||
description: "Better design decisions"
|
||||
},
|
||||
{
|
||||
value: "60%",
|
||||
label: "Usability Increase",
|
||||
description: "Optimized user experience"
|
||||
},
|
||||
{
|
||||
value: "1000+",
|
||||
label: "Users Interviewed",
|
||||
description: "Deep behavioral insights"
|
||||
}
|
||||
],
|
||||
|
||||
// User Research & Testing development process
|
||||
process: {
|
||||
title: "Our User Research & Testing Process",
|
||||
subtitle: "From research planning to actionable insights",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Research Strategy & Planning",
|
||||
description: "Define research objectives, select appropriate methodologies, and create comprehensive research plans aligned with business goals.",
|
||||
icon: <Search className="w-8 h-8" />,
|
||||
details: [
|
||||
"Research objectives and hypothesis definition",
|
||||
"Methodology selection and study design",
|
||||
"Participant recruitment strategy and screening",
|
||||
"Timeline planning and resource allocation"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Data Collection & User Interviews",
|
||||
description: "Execute research studies including user interviews, surveys, observations, and usability testing to gather comprehensive user insights.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"User interviews and in-depth sessions",
|
||||
"Usability testing and task analysis",
|
||||
"Behavioral observation and ethnographic studies",
|
||||
"Quantitative data collection and analytics"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Analysis & Insight Synthesis",
|
||||
description: "Analyze research data using proven frameworks to identify patterns, pain points, and opportunities for design improvements.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Data analysis and pattern identification",
|
||||
"User journey mapping and pain point analysis",
|
||||
"Persona development and behavioral modeling",
|
||||
"Insight synthesis and opportunity mapping"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Reporting & Recommendations",
|
||||
description: "Deliver actionable insights through comprehensive reports, presentations, and strategic recommendations for design optimization.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Comprehensive research reports and findings",
|
||||
"Actionable design recommendations",
|
||||
"Stakeholder presentations and workshops",
|
||||
"Implementation guidance and success metrics"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// User Research & Testing focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What types of user research methods do you employ?",
|
||||
answer: "We use various methods including user interviews, usability testing, card sorting, tree testing, A/B testing, surveys, ethnographic studies, diary studies, focus groups, eye-tracking, and analytics analysis to gather comprehensive user insights."
|
||||
},
|
||||
{
|
||||
question: "How do you recruit and select research participants?",
|
||||
answer: "We use professional recruitment services, internal user databases, social media outreach, and specialized platforms to recruit participants. We carefully screen participants to ensure they match your target user demographics and behaviors."
|
||||
},
|
||||
{
|
||||
question: "What tools and platforms do you use for user research?",
|
||||
answer: "We utilize tools like UserTesting, Maze, Hotjar, Lookback, Optimal Workshop, Typeform, Miro, Dovetail, and Google Analytics. Tool selection depends on research methodology, budget, and specific project requirements."
|
||||
},
|
||||
{
|
||||
question: "How long does a typical user research study take?",
|
||||
answer: "Timeline varies by methodology: quick usability tests (1-2 weeks), comprehensive user interviews (2-4 weeks), longitudinal studies (4-12 weeks). We provide detailed timelines during planning and can adapt to urgent research needs."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure research findings are actionable for design teams?",
|
||||
answer: "We translate insights into specific design recommendations, create user personas and journey maps, prioritize findings by impact, and provide implementation guidance. We also conduct workshops to ensure design teams understand and can act on findings."
|
||||
},
|
||||
{
|
||||
question: "Can you conduct remote user research and testing?",
|
||||
answer: "Yes, we're experienced in remote research methods including virtual interviews, unmoderated testing, remote usability sessions, and online surveys. We use secure platforms and ensure participants are comfortable with remote testing protocols."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireUserResearchTestingDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with DeveloperSkillsVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={DeveloperSkillsVector}
|
||||
category={hireUserResearchTestingDevelopersData.heroBanner.category}
|
||||
title={hireUserResearchTestingDevelopersData.heroBanner.title}
|
||||
description={hireUserResearchTestingDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireUserResearchTestingDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireUserResearchTestingDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireUserResearchTestingDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireUserResearchTestingDevelopersData.process.title}
|
||||
subtitle={hireUserResearchTestingDevelopersData.process.subtitle}
|
||||
steps={hireUserResearchTestingDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="User Research & Testing FAQs"
|
||||
subtitle="Everything you need to know about hiring user research & testing developers"
|
||||
faqs={hireUserResearchTestingDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireWearableAppDevelopers.tsx
Normal file
195
pages/HireWearableAppDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { TechStackVisualization } from "../components/vectors/TechStackVisualization";
|
||||
import { Smartphone, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireWearableAppDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire Wearable App Developers",
|
||||
description: "Get access to specialized wearable app developers for Apple Watch, Android Wear, and IoT devices. Build innovative wearable experiences that extend your digital ecosystem.",
|
||||
primaryCTA: {
|
||||
text: "Hire Wearable Developers",
|
||||
href: "/contact-us",
|
||||
icon: Smartphone
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// Wearable-specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "45+",
|
||||
label: "Wearable Apps Built",
|
||||
description: "Apple Watch & Android Wear"
|
||||
},
|
||||
{
|
||||
value: "85%",
|
||||
label: "User Engagement Rate",
|
||||
description: "Daily active usage"
|
||||
},
|
||||
{
|
||||
value: "2M+",
|
||||
label: "Wearable Installations",
|
||||
description: "Across all platforms"
|
||||
},
|
||||
{
|
||||
value: "95%",
|
||||
label: "Battery Optimization",
|
||||
description: "Efficient power consumption"
|
||||
}
|
||||
],
|
||||
|
||||
// Wearable development process
|
||||
process: {
|
||||
title: "Our Wearable Development Process",
|
||||
subtitle: "Smart devices, smarter experiences",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "Wearable Strategy & UX Design",
|
||||
description: "Define wearable-specific features, micro-interactions, and user experience optimized for small screens.",
|
||||
icon: <Smartphone className="w-8 h-8" />,
|
||||
details: [
|
||||
"Wearable UX patterns analysis",
|
||||
"Micro-interaction design",
|
||||
"Platform capability assessment",
|
||||
"Battery optimization planning"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Platform-Specific Development",
|
||||
description: "Create wearable apps using platform-specific SDKs and following wearable design guidelines.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"Apple Watch WatchOS development",
|
||||
"Android Wear OS implementation",
|
||||
"Companion app integration",
|
||||
"Sensor data processing"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Performance & Battery Optimization",
|
||||
description: "Optimize for wearable constraints including battery life, processing power, and memory limitations.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Power consumption optimization",
|
||||
"Background processing efficiency",
|
||||
"Data synchronization strategies",
|
||||
"Memory management"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "Testing & Deployment",
|
||||
description: "Comprehensive testing on real devices and deployment to wearable app stores and distribution platforms.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"Multi-device testing",
|
||||
"Wearable store submission",
|
||||
"Companion app coordination",
|
||||
"Analytics implementation"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// Wearable-focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What wearable platforms do your developers support?",
|
||||
answer: "Our developers specialize in Apple Watch (WatchOS), Android Wear OS, Samsung Galaxy Watch, Fitbit OS, and custom IoT wearable devices. We also develop companion mobile apps for seamless integration with smartphones."
|
||||
},
|
||||
{
|
||||
question: "How do you optimize wearable apps for battery life?",
|
||||
answer: "We implement battery optimization techniques including efficient background processing, smart data synchronization, optimized sensor usage, reduced CPU-intensive operations, and intelligent update scheduling to maximize battery life on wearable devices."
|
||||
},
|
||||
{
|
||||
question: "Can wearable apps work independently without a smartphone?",
|
||||
answer: "Yes, we develop both standalone wearable apps with cellular/WiFi connectivity and companion apps that sync with smartphones. The approach depends on device capabilities and your specific use case requirements."
|
||||
},
|
||||
{
|
||||
question: "What types of wearable applications do you develop?",
|
||||
answer: "We develop fitness tracking apps, health monitoring solutions, productivity tools, communication apps, payment applications, navigation aids, entertainment apps, and enterprise wearable solutions for various industries."
|
||||
},
|
||||
{
|
||||
question: "How do you handle data synchronization between wearables and mobile apps?",
|
||||
answer: "We implement efficient sync strategies using background syncing, delta updates, conflict resolution, offline capability, and optimized data transfer protocols to ensure seamless data flow between wearable and companion apps."
|
||||
},
|
||||
{
|
||||
question: "What sensors and hardware features can wearable apps access?",
|
||||
answer: "Wearable apps can access heart rate monitors, accelerometers, gyroscopes, GPS, microphones, speakers, haptic feedback, digital crown, force touch, NFC, and various health sensors depending on the device capabilities."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireWearableAppDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with TechStackVisualization */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={TechStackVisualization}
|
||||
category={hireWearableAppDevelopersData.heroBanner.category}
|
||||
title={hireWearableAppDevelopersData.heroBanner.title}
|
||||
description={hireWearableAppDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireWearableAppDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireWearableAppDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireWearableAppDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireWearableAppDevelopersData.process.title}
|
||||
subtitle={hireWearableAppDevelopersData.process.subtitle}
|
||||
steps={hireWearableAppDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="Wearable Development FAQs"
|
||||
subtitle="Everything you need to know about hiring wearable app developers"
|
||||
faqs={hireWearableAppDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section>
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
195
pages/HireiOSAppDevelopers.tsx
Normal file
195
pages/HireiOSAppDevelopers.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import { Footer } from "../components/Footer";
|
||||
import { HireTalentHeroBanner } from "../components/HireTalentHeroBanner";
|
||||
import { FAQSection } from "../components/FAQSection";
|
||||
import { AppSuccessMetrics } from "../components/AppSuccessMetrics";
|
||||
import { StepsIllustrated } from "../components/StepsIllustrated";
|
||||
import { CarouselTestimonials } from "../components/CarouselTestimonials";
|
||||
import { ResourceCards } from "../components/ResourceCards";
|
||||
import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { MobileAppVector } from "../components/vectors/MobileAppVector";
|
||||
import { Smartphone, Users, Code, CheckCircle, Star, Award, Clock, TrendingUp } from "lucide-react";
|
||||
|
||||
const hireiOSAppDevelopersData = {
|
||||
heroBanner: {
|
||||
category: "Hire Expert Developers",
|
||||
title: "Hire iOS App Developers",
|
||||
description: "Get access to expert iOS developers specialized in Swift, SwiftUI, and Objective-C. Build premium iOS applications that deliver exceptional user experiences on iPhone and iPad.",
|
||||
primaryCTA: {
|
||||
text: "Hire iOS Developers",
|
||||
href: "/contact-us",
|
||||
icon: Smartphone
|
||||
},
|
||||
secondaryCTA: {
|
||||
text: "View Developer Profiles",
|
||||
href: "/hire-talent",
|
||||
icon: Users
|
||||
}
|
||||
},
|
||||
|
||||
// iOS-specific metrics
|
||||
metrics: [
|
||||
{
|
||||
value: "150+",
|
||||
label: "iOS Apps Delivered",
|
||||
description: "Successfully launched on App Store"
|
||||
},
|
||||
{
|
||||
value: "4.8/5",
|
||||
label: "App Store Rating",
|
||||
description: "Average user satisfaction"
|
||||
},
|
||||
{
|
||||
value: "30M+",
|
||||
label: "iOS Downloads",
|
||||
description: "Across all published apps"
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "App Store Approval",
|
||||
description: "First-time submission success"
|
||||
}
|
||||
],
|
||||
|
||||
// iOS development process
|
||||
process: {
|
||||
title: "Our iOS Development Process",
|
||||
subtitle: "From concept to App Store success",
|
||||
steps: [
|
||||
{
|
||||
number: "01",
|
||||
title: "iOS Strategy & Architecture",
|
||||
description: "Define iOS-specific features, target devices, and architecture for optimal iPhone/iPad performance.",
|
||||
icon: <Smartphone className="w-8 h-8" />,
|
||||
details: [
|
||||
"iOS version compatibility strategy",
|
||||
"iPhone vs iPad optimization",
|
||||
"Swift/SwiftUI architecture planning",
|
||||
"iOS Human Interface Guidelines compliance"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "02",
|
||||
title: "Native iOS Design",
|
||||
description: "Create pixel-perfect designs following Apple's design principles and iOS interface guidelines.",
|
||||
icon: <Code className="w-8 h-8" />,
|
||||
details: [
|
||||
"iOS design system implementation",
|
||||
"Native iOS UI components",
|
||||
"iOS accessibility features",
|
||||
"Dark mode compatibility"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "03",
|
||||
title: "Swift Development & Testing",
|
||||
description: "Build robust iOS applications using Swift and SwiftUI with comprehensive device testing.",
|
||||
icon: <CheckCircle className="w-8 h-8" />,
|
||||
details: [
|
||||
"Swift 5+ development",
|
||||
"SwiftUI modern interface",
|
||||
"Xcode testing suites",
|
||||
"iOS performance optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
number: "04",
|
||||
title: "App Store Launch",
|
||||
description: "Handle App Store submission, optimization, and compliance with Apple's review guidelines.",
|
||||
icon: <TrendingUp className="w-8 h-8" />,
|
||||
details: [
|
||||
"App Store Connect setup",
|
||||
"iOS App Store Optimization",
|
||||
"Apple review compliance",
|
||||
"Post-launch iOS updates"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
// iOS-focused FAQs
|
||||
faqs: [
|
||||
{
|
||||
question: "What iOS technologies and frameworks do your developers use?",
|
||||
answer: "Our iOS developers are experts in Swift, SwiftUI, UIKit, Core Data, CloudKit, ARKit, and other iOS frameworks. We stay current with the latest iOS versions and Apple's development best practices."
|
||||
},
|
||||
{
|
||||
question: "How do you ensure iOS app performance and battery efficiency?",
|
||||
answer: "We follow Apple's performance guidelines, use Instruments for profiling, optimize memory usage, implement efficient data handling, and conduct extensive testing on various iOS devices to ensure smooth performance and battery efficiency."
|
||||
},
|
||||
{
|
||||
question: "Do you handle App Store submission and Apple's review process?",
|
||||
answer: "Yes, we manage the complete App Store submission process including metadata optimization, screenshot creation, compliance with Apple's review guidelines, and handling any review feedback to ensure successful app approval."
|
||||
},
|
||||
{
|
||||
question: "Can you integrate iOS apps with Apple ecosystem features?",
|
||||
answer: "Absolutely. Our developers are experienced in integrating with Apple services like iCloud, Apple Pay, Siri Shortcuts, HealthKit, HomeKit, and other iOS-specific features to create seamless ecosystem experiences."
|
||||
},
|
||||
{
|
||||
question: "How do you handle iOS app security and data privacy?",
|
||||
answer: "We implement iOS security best practices including Keychain services, biometric authentication, App Transport Security, data encryption, and ensure compliance with Apple's privacy requirements and App Tracking Transparency."
|
||||
},
|
||||
{
|
||||
question: "Do you support both iPhone and iPad development?",
|
||||
answer: "Yes, our developers create universal iOS apps that work seamlessly across iPhone and iPad, utilizing adaptive layouts, size classes, and iOS-specific features for optimal user experience on all devices."
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export function HireiOSAppDevelopers() {
|
||||
return (
|
||||
<div className="dark min-h-screen bg-background">
|
||||
<Navigation />
|
||||
|
||||
{/* Hero Section with MobileAppVector */}
|
||||
<HireTalentHeroBanner
|
||||
vectorComponent={MobileAppVector}
|
||||
category={hireiOSAppDevelopersData.heroBanner.category}
|
||||
title={hireiOSAppDevelopersData.heroBanner.title}
|
||||
description={hireiOSAppDevelopersData.heroBanner.description}
|
||||
primaryCTA={hireiOSAppDevelopersData.heroBanner.primaryCTA}
|
||||
secondaryCTA={hireiOSAppDevelopersData.heroBanner.secondaryCTA}
|
||||
/>
|
||||
|
||||
{/* Success Metrics */}
|
||||
{/* <section>
|
||||
<AppSuccessMetrics metrics={hireiOSAppDevelopersData.metrics} />
|
||||
</section> */}
|
||||
|
||||
{/* Development Process */}
|
||||
<section>
|
||||
<StepsIllustrated
|
||||
title={hireiOSAppDevelopersData.process.title}
|
||||
subtitle={hireiOSAppDevelopersData.process.subtitle}
|
||||
steps={hireiOSAppDevelopersData.process.steps}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Client Testimonials */}
|
||||
<section>
|
||||
<CarouselTestimonials />
|
||||
</section>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<section>
|
||||
<FAQSection
|
||||
title="iOS Development FAQs"
|
||||
subtitle="Everything you need to know about hiring iOS app developers"
|
||||
faqs={hireiOSAppDevelopersData.faqs}
|
||||
/>
|
||||
</section>
|
||||
|
||||
{/* Resources */}
|
||||
<section>
|
||||
<ResourceCards />
|
||||
</section>
|
||||
|
||||
{/* Call to Action */}
|
||||
<section >
|
||||
<SplitCallToAction />
|
||||
</section>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1149,7 +1149,9 @@ const HireNativeDevelopers = () => {
|
||||
viewport={{ once: true }}
|
||||
className="flex flex-col sm:flex-row gap-4 justify-center"
|
||||
>
|
||||
<ShimmerButton className="px-8 py-4">
|
||||
<ShimmerButton className="px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/native-app-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<UserPlus className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Native Developers</span>
|
||||
|
||||
@@ -1430,7 +1430,7 @@ export const PWADevelopment = () => {
|
||||
title="Augment Your Team with Top PWA Developers"
|
||||
description="Build fast, installable, and offline-first Progressive Web Apps that feel like native mobile apps."
|
||||
buttonText="Hire PWA Developers"
|
||||
buttonLink="/start-a-project"
|
||||
buttonLink="/hire-talent/pwa-developers"
|
||||
developerTypes={[
|
||||
{
|
||||
title: "Frontend PWA Developer",
|
||||
|
||||
@@ -1411,7 +1411,9 @@ const HireModernizationTalent = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/product-modernization-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Modernization Experts</span>
|
||||
|
||||
@@ -461,7 +461,7 @@ const InlineCTA = () => {
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.8 }}
|
||||
viewport={{ once: true }}
|
||||
className="text-left max-w-4xl mx-auto"
|
||||
className="text-left max-w-6xl mx-auto"
|
||||
>
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
|
||||
@@ -1421,7 +1421,9 @@ const HireSaaSDevelopers = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/saas-product-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire SaaS Developers</span>
|
||||
|
||||
@@ -1600,7 +1600,9 @@ const HireDevOpsTalent = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/system-architecture-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire DevOps Talent</span>
|
||||
|
||||
@@ -1471,7 +1471,9 @@ const HireIntegrationTalent = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/third-party-integration-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire Integration Specialists</span>
|
||||
|
||||
@@ -1185,7 +1185,9 @@ const HireUIUXDesigners = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/ui-ux-designers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<Users className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire UI/UX Designers</span>
|
||||
|
||||
@@ -1049,7 +1049,9 @@ const HireResearchers = () => {
|
||||
className="text-center space-y-6"
|
||||
>
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<ShimmerButton className="text-lg px-8 py-4">
|
||||
<ShimmerButton className="text-lg px-8 py-4"
|
||||
onClick={() => navigateTo("/hire-talent/user-research-testing-developers")}
|
||||
>
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<UserPlus className="w-5 h-5 flex-shrink-0" />
|
||||
<span>Hire User Researchers</span>
|
||||
|
||||
@@ -1500,7 +1500,7 @@ export const WearableDeviceDevelopment = () => {
|
||||
title="Augment Your Team with Top Wearable App Developers"
|
||||
description="Develop seamless, real-time apps for smartwatches and wearable devices tailored for fitness, healthcare, and lifestyle industries."
|
||||
buttonText="Hire Wearable Developers"
|
||||
buttonLink="/start-a-project"
|
||||
buttonLink="/hire-talent/wearable-app-developers"
|
||||
developerTypes={[
|
||||
{
|
||||
title: "WearOS Developer",
|
||||
|
||||
@@ -1049,7 +1049,7 @@ export const IOSAppDevelopment = () => {
|
||||
title="Augment Your Team with Top iOS App Developers"
|
||||
description="Build sleek, high-performance iOS applications with our skilled Swift and Objective-C developers."
|
||||
buttonText="Hire iOS Developers"
|
||||
buttonLink="/start-a-project"
|
||||
buttonLink="/hire-talent/ios-app-developers"
|
||||
developerTypes={[
|
||||
{
|
||||
title: "Swift Developer",
|
||||
|
||||
@@ -644,3 +644,7 @@ h1{
|
||||
.CardContentOverride:last-child {
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
button{
|
||||
cursor: pointer;
|
||||
}
|
||||
Reference in New Issue
Block a user