Merge version_2_1781996658815 into main #1
@@ -5,15 +5,15 @@
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #f5faff;
|
||||
--card: #ffffff;
|
||||
--foreground: #001122;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #f5faff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #001122;
|
||||
--accent: #a8cce8;
|
||||
--background-accent: #7ba3cf;
|
||||
--background: #0f172a;
|
||||
--card: #ffffff0d;
|
||||
--foreground: #f8fafc;
|
||||
--primary-cta: #3b82f6;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #ffffff1a;
|
||||
--secondary-cta-text: #f8fafc;
|
||||
--accent: #94a3b8;
|
||||
--background-accent: #1e293b;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 1.5rem;
|
||||
|
||||
@@ -1,292 +1,39 @@
|
||||
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
|
||||
import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards';
|
||||
import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import SocialProofSection from './HomePage/sections/SocialProof';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import ServicesSection from './HomePage/sections/Services';
|
||||
import PricingSection from './HomePage/sections/Pricing';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroCenteredLogos
|
||||
avatarsSrc={[
|
||||
"http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg",
|
||||
"http://img.b2bpic.net/free-photo/pleased-middle-aged-man-wearing-white-t-shirt-with-tie-crossing-hands-isolated-orange-wall_141793-85908.jpg",
|
||||
"http://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg",
|
||||
"http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg",
|
||||
]}
|
||||
avatarText="Trusted by 500+ enterprises"
|
||||
title="Enterprise IT Solutions Built for Growth"
|
||||
description="Pixel Technosol delivers managed services, cloud infrastructure, and cybersecurity that scale with your business. From strategy to deployment, we handle your technology so you focus on results."
|
||||
primaryButton={{
|
||||
text: "Schedule a Consultation",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Our Services",
|
||||
href: "#services",
|
||||
}}
|
||||
names={[
|
||||
"Enterprise IT",
|
||||
"Cloud Infrastructure",
|
||||
"Cybersecurity",
|
||||
"Managed Services",
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SectionErrorBoundary name="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Our Partners"
|
||||
title="Supporting Industry Leaders"
|
||||
description="Trusted by top enterprises worldwide to manage, secure, and scale their digital infrastructure."
|
||||
names={[
|
||||
"TechCorp",
|
||||
"DataStream",
|
||||
"Innovate",
|
||||
"CloudWise",
|
||||
"CyberGuard",
|
||||
"SecureNet",
|
||||
"SysTech",
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<SocialProofSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTestimonial
|
||||
tag="Our Mission"
|
||||
quote="Pixel Technosol transformed our infrastructure in just 3 months, providing the stability and security we needed to scale globally."
|
||||
author="Sarah Jenkins"
|
||||
role="CTO at InnovateLab"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-male-entrepreneur-using-desktop-pc-while-working-office-there-are-people-background_637285-1037.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<SectionErrorBoundary name="services">
|
||||
<FeaturesTaggedCards
|
||||
tag="Core Services"
|
||||
title="Strategic IT Partnerships"
|
||||
description="Comprehensive technology solutions designed for enterprise agility and security."
|
||||
items={[
|
||||
{
|
||||
tag: "Cloud",
|
||||
title: "Scalable Infrastructure",
|
||||
description: "Cloud migration and management tailored to your specific business requirements.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bar-code-data-identification-encryption-concept_53876-167092.jpg",
|
||||
primaryButton: {
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Managed",
|
||||
title: "Proactive IT Support",
|
||||
description: "24/7 monitoring and maintenance of your technology assets to prevent downtime.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blue-light-with-bokeh-effect_1208-208.jpg",
|
||||
primaryButton: {
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Security",
|
||||
title: "Advanced Cybersecurity",
|
||||
description: "Enterprise-grade threat protection and compliance monitoring for your digital environment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-shield-protecting-digital-data-from-threats_23-2152029092.jpg",
|
||||
primaryButton: {
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ServicesSection />
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingLayeredCards
|
||||
tag="Pricing"
|
||||
title="Transparent ROI"
|
||||
description="Choose a partnership model that aligns with your growth trajectory."
|
||||
plans={[
|
||||
{
|
||||
tag: "Growth",
|
||||
price: "$2,900/mo",
|
||||
description: "Ideal for midmarket companies scaling up their operations.",
|
||||
features: [
|
||||
"Cloud Management",
|
||||
"24/7 Monitoring",
|
||||
"Standard SLA",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select Plan",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Enterprise",
|
||||
price: "$5,500/mo",
|
||||
description: "Full-scale dedicated infrastructure support and advanced cybersecurity.",
|
||||
features: [
|
||||
"Everything in Growth",
|
||||
"Dedicated Expert Team",
|
||||
"Priority Support",
|
||||
"Security Audits",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select Plan",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Custom",
|
||||
price: "Custom",
|
||||
description: "Tailored solutions for complex enterprise environments.",
|
||||
features: [
|
||||
"Custom SLAs",
|
||||
"Dedicated Infrastructure",
|
||||
"Strategic Consulting",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<PricingSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Impact"
|
||||
title="Quantifiable Results"
|
||||
description="How we create tangible value for our enterprise partners."
|
||||
metrics={[
|
||||
{
|
||||
value: "99.99%",
|
||||
title: "Uptime Guarantee",
|
||||
description: "We ensure your systems stay online when it matters most.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-cityscape-with-glowing-lines_23-2151966693.jpg",
|
||||
},
|
||||
{
|
||||
value: "45%",
|
||||
title: "Cost Savings",
|
||||
description: "Average efficiency gains realized by our enterprise clients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/it-professionals-updating-server-room-systems-using-tablet_482257-106639.jpg",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Global Support",
|
||||
description: "Always-on coverage for your technology infrastructure.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-low-poly-background-with-connecting-lines-dots_1048-14634.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialColumnMarqueeCards
|
||||
tag="Client Stories"
|
||||
title="Trusted by Decision Makers"
|
||||
description="Read what our partners have to say about our impact on their digital growth."
|
||||
testimonials={[
|
||||
{
|
||||
name: "James Miller",
|
||||
role: "IT Director",
|
||||
quote: "Pixel Technosol has become an extension of our team.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-her-coworkers-clapping-hands-meeting-office_637285-207.jpg",
|
||||
},
|
||||
{
|
||||
name: "Linda Chen",
|
||||
role: "VP Operations",
|
||||
quote: "Seamless migration and continuous operational excellence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/technology-occupation-remote-work-concept-confident-young-female-copywriter-standing-kitchen_343059-3895.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mark Wilson",
|
||||
role: "CIO",
|
||||
quote: "Best-in-class security support for enterprise demands.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glad-young-man-with-african-hairstyle-posing-with-arms-crossed-his-office-with-other-employees-male-manager-blue-shirt-smiling-conference-workplace_197531-3748.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena Rodriguez",
|
||||
role: "Head of Engineering",
|
||||
quote: "Reliable and responsive, a true technology partner.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-african-american-programer-sitting-down-working-laptop-arranging-glasses-looking-up-smiling-camera-system-engineer-using-portable-computer-computing-big-data_482257-40598.jpg",
|
||||
},
|
||||
{
|
||||
name: "David Park",
|
||||
role: "IT Ops",
|
||||
quote: "Transparent reporting and exceptional ROI.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTwoColumn
|
||||
tag="Questions"
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to common concerns from our enterprise clients."
|
||||
items={[
|
||||
{
|
||||
question: "What industries do you serve?",
|
||||
answer: "We specialize in midmarket and enterprise sectors, focusing on finance, healthcare, and retail.",
|
||||
},
|
||||
{
|
||||
question: "How do you handle compliance?",
|
||||
answer: "Our solutions are built with strict adherence to SOC2, HIPAA, and GDPR standards.",
|
||||
},
|
||||
{
|
||||
question: "What is the onboarding process?",
|
||||
answer: "We begin with a strategic audit to align your infrastructure with your business goals.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer custom SLA support?",
|
||||
answer: "Yes, we provide fully customizable service level agreements tailored to your business uptime requirements.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Get Started"
|
||||
text="Ready to scale your enterprise technology? Schedule a consultation with our experts today."
|
||||
primaryButton={{
|
||||
text: "Schedule a Consultation",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Our Case Studies",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
22
src/pages/HomePage/sections/About.tsx
Normal file
22
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTestimonial
|
||||
tag="Our Mission"
|
||||
quote="Pixel Technosol transformed our infrastructure in just 3 months, providing the stability and security we needed to scale globally."
|
||||
author="Sarah Jenkins"
|
||||
role="CTO at InnovateLab"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-male-entrepreneur-using-desktop-pc-while-working-office-there-are-people-background_637285-1037.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Get Started"
|
||||
text="Ready to scale your enterprise technology? Schedule a consultation with our experts today."
|
||||
primaryButton={{
|
||||
text: "Schedule a Consultation",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Our Case Studies",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
38
src/pages/HomePage/sections/Faq.tsx
Normal file
38
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTwoColumn
|
||||
tag="Questions"
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to common concerns from our enterprise clients."
|
||||
items={[
|
||||
{
|
||||
question: "What industries do you serve?",
|
||||
answer: "We specialize in midmarket and enterprise sectors, focusing on finance, healthcare, and retail.",
|
||||
},
|
||||
{
|
||||
question: "How do you handle compliance?",
|
||||
answer: "Our solutions are built with strict adherence to SOC2, HIPAA, and GDPR standards.",
|
||||
},
|
||||
{
|
||||
question: "What is the onboarding process?",
|
||||
answer: "We begin with a strategic audit to align your infrastructure with your business goals.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer custom SLA support?",
|
||||
answer: "Yes, we provide fully customizable service level agreements tailored to your business uptime requirements.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
95
src/pages/HomePage/sections/Hero.tsx
Normal file
95
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,95 @@
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import Button from "@/components/ui/Button";
|
||||
import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import AvatarGroup from "@/components/ui/AvatarGroup";
|
||||
|
||||
const primaryButton = {
|
||||
text: "Schedule a Consultation",
|
||||
href: "#contact"
|
||||
};
|
||||
const secondaryButton = {
|
||||
text: "Our Services",
|
||||
href: "#services"
|
||||
};
|
||||
const avatarsSrc = [
|
||||
"http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg",
|
||||
"http://img.b2bpic.net/free-photo/pleased-middle-aged-man-wearing-white-t-shirt-with-tie-crossing-hands-isolated-orange-wall_141793-85908.jpg",
|
||||
"http://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg",
|
||||
"http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg"
|
||||
];
|
||||
|
||||
type HeroOverlayProps = {
|
||||
tag: string;
|
||||
title: string;
|
||||
description: string;
|
||||
primaryButton: { text: string; href: string };
|
||||
secondaryButton: { text: string; href: string };
|
||||
avatarsSrc?: string[];
|
||||
avatarsLabel?: string;
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
const HeroInline = () => {
|
||||
return (
|
||||
<section
|
||||
aria-label="Hero section"
|
||||
className="relative w-full h-svh overflow-hidden flex flex-col justify-end mb-20"
|
||||
>
|
||||
<HeroBackgroundSlot />
|
||||
<ImageOrVideo
|
||||
imageSrc={"http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg"}
|
||||
className="absolute inset-0 w-full h-full object-cover rounded-none"
|
||||
/>
|
||||
|
||||
<div
|
||||
className="absolute z-10 w-[150vw] h-[150vw] left-0 bottom-0 -translate-x-1/2 translate-y-1/2 backdrop-blur mask-[radial-gradient(circle,black_20%,transparent_70%)]"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
|
||||
<div className="relative z-10 w-content-width mx-auto pb-10 md:pb-25">
|
||||
<div className="flex flex-col gap-3 w-full md:w-6/10 lg:w-1/2 xl:w-45/100 2xl:w-4/10 p-8 rounded-3xl bg-white/10 backdrop-blur-xl border border-white/20 shadow-2xl">
|
||||
<div className="w-fit px-3 py-1 mb-1 text-sm bg-white/5 border border-white/10 backdrop-blur-md rounded-full">
|
||||
<p className="text-blue-200 font-medium">{"Pixel Technosol"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"Enterprise IT Solutions Built for Growth"}
|
||||
variant="fade"
|
||||
gradientText={false}
|
||||
tag="h1"
|
||||
className="text-5xl md:text-7xl leading-[1.15] font-bold text-white text-balance"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"Pixel Technosol delivers managed services, cloud infrastructure, and cybersecurity that scale with your business. From strategy to deployment, we handle your technology so you focus on results."}
|
||||
variant="fade"
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="text-lg md:text-xl text-slate-200 leading-snug text-balance"
|
||||
/>
|
||||
|
||||
<div className="flex flex-wrap gap-3 mt-2 md:mt-3">
|
||||
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" className="border-none shadow-lg shadow-blue-500/30" />
|
||||
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} className="border border-white/20 backdrop-blur-md" />
|
||||
</div>
|
||||
|
||||
{avatarsSrc && avatarsSrc.length > 0 && (
|
||||
<div className="mt-3 md:mt-4 pt-4 border-t border-white/10">
|
||||
<AvatarGroup avatarsSrc={avatarsSrc} size="lg" label={"Trusted by 500+ enterprises"} labelClassName="text-slate-300" />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default function HeroSection() {
|
||||
return (
|
||||
<div data-webild-section="hero" id="hero">
|
||||
<HeroInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
40
src/pages/HomePage/sections/Metrics.tsx
Normal file
40
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Impact"
|
||||
title="Quantifiable Results"
|
||||
description="How we create tangible value for our enterprise partners."
|
||||
metrics={[
|
||||
{
|
||||
value: "99.99%",
|
||||
title: "Uptime Guarantee",
|
||||
description: "We ensure your systems stay online when it matters most.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-cityscape-with-glowing-lines_23-2151966693.jpg",
|
||||
},
|
||||
{
|
||||
value: "45%",
|
||||
title: "Cost Savings",
|
||||
description: "Average efficiency gains realized by our enterprise clients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/it-professionals-updating-server-room-systems-using-tablet_482257-106639.jpg",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Global Support",
|
||||
description: "Always-on coverage for your technology infrastructure.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-low-poly-background-with-connecting-lines-dots_1048-14634.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
65
src/pages/HomePage/sections/Pricing.tsx
Normal file
65
src/pages/HomePage/sections/Pricing.tsx
Normal file
@@ -0,0 +1,65 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "pricing" section.
|
||||
|
||||
import React from 'react';
|
||||
import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function PricingSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="pricing" data-section="pricing">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingLayeredCards
|
||||
tag="Pricing"
|
||||
title="Transparent ROI"
|
||||
description="Choose a partnership model that aligns with your growth trajectory."
|
||||
plans={[
|
||||
{
|
||||
tag: "Growth",
|
||||
price: "$2,900/mo",
|
||||
description: "Ideal for midmarket companies scaling up their operations.",
|
||||
features: [
|
||||
"Cloud Management",
|
||||
"24/7 Monitoring",
|
||||
"Standard SLA",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select Plan",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Enterprise",
|
||||
price: "$5,500/mo",
|
||||
description: "Full-scale dedicated infrastructure support and advanced cybersecurity.",
|
||||
features: [
|
||||
"Everything in Growth",
|
||||
"Dedicated Expert Team",
|
||||
"Priority Support",
|
||||
"Security Audits",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select Plan",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Custom",
|
||||
price: "Custom",
|
||||
description: "Tailored solutions for complex enterprise environments.",
|
||||
features: [
|
||||
"Custom SLAs",
|
||||
"Dedicated Infrastructure",
|
||||
"Strategic Consulting",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Services.tsx
Normal file
52
src/pages/HomePage/sections/Services.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "services" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ServicesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="services" data-section="services">
|
||||
<SectionErrorBoundary name="services">
|
||||
<FeaturesTaggedCards
|
||||
tag="Core Services"
|
||||
title="Strategic IT Partnerships"
|
||||
description="Comprehensive technology solutions designed for enterprise agility and security."
|
||||
items={[
|
||||
{
|
||||
tag: "Cloud",
|
||||
title: "Scalable Infrastructure",
|
||||
description: "Cloud migration and management tailored to your specific business requirements.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bar-code-data-identification-encryption-concept_53876-167092.jpg",
|
||||
primaryButton: {
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Managed",
|
||||
title: "Proactive IT Support",
|
||||
description: "24/7 monitoring and maintenance of your technology assets to prevent downtime.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blue-light-with-bokeh-effect_1208-208.jpg",
|
||||
primaryButton: {
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: "Security",
|
||||
title: "Advanced Cybersecurity",
|
||||
description: "Enterprise-grade threat protection and compliance monitoring for your digital environment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-shield-protecting-digital-data-from-threats_23-2152029092.jpg",
|
||||
primaryButton: {
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
29
src/pages/HomePage/sections/SocialProof.tsx
Normal file
29
src/pages/HomePage/sections/SocialProof.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "social-proof" section.
|
||||
|
||||
import React from 'react';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function SocialProofSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SectionErrorBoundary name="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Our Partners"
|
||||
title="Supporting Industry Leaders"
|
||||
description="Trusted by top enterprises worldwide to manage, secure, and scale their digital infrastructure."
|
||||
names={[
|
||||
"TechCorp",
|
||||
"DataStream",
|
||||
"Innovate",
|
||||
"CloudWise",
|
||||
"CyberGuard",
|
||||
"SecureNet",
|
||||
"SysTech",
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialColumnMarqueeCards
|
||||
tag="Client Stories"
|
||||
title="Trusted by Decision Makers"
|
||||
description="Read what our partners have to say about our impact on their digital growth."
|
||||
testimonials={[
|
||||
{
|
||||
name: "James Miller",
|
||||
role: "IT Director",
|
||||
quote: "Pixel Technosol has become an extension of our team.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-her-coworkers-clapping-hands-meeting-office_637285-207.jpg",
|
||||
},
|
||||
{
|
||||
name: "Linda Chen",
|
||||
role: "VP Operations",
|
||||
quote: "Seamless migration and continuous operational excellence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/technology-occupation-remote-work-concept-confident-young-female-copywriter-standing-kitchen_343059-3895.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mark Wilson",
|
||||
role: "CIO",
|
||||
quote: "Best-in-class security support for enterprise demands.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glad-young-man-with-african-hairstyle-posing-with-arms-crossed-his-office-with-other-employees-male-manager-blue-shirt-smiling-conference-workplace_197531-3748.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena Rodriguez",
|
||||
role: "Head of Engineering",
|
||||
quote: "Reliable and responsive, a true technology partner.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-african-american-programer-sitting-down-working-laptop-arranging-glasses-looking-up-smiling-camera-system-engineer-using-portable-computer-computing-big-data_482257-40598.jpg",
|
||||
},
|
||||
{
|
||||
name: "David Park",
|
||||
role: "IT Ops",
|
||||
quote: "Transparent reporting and exceptional ROI.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user