Compare commits
6 Commits
version_4_
...
version_7_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4d77386f83 | ||
| 06735f3338 | |||
|
|
451b1b43cb | ||
| 926b0b3ccc | |||
|
|
2cbe919deb | ||
| 775d8b2112 |
@@ -1,40 +1,114 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "guarantee" section.
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import { Zap, TrendingUp, ShieldCheck } from 'lucide-react';
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
import Button from "@/components/ui/Button";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import { resolveIcon } from "@/utils/resolve-icon";
|
||||
import { useEffect, useRef } from 'react';
|
||||
import { gsap } from 'gsap';
|
||||
import { ScrollTrigger } from 'gsap/ScrollTrigger';
|
||||
|
||||
import React from 'react';
|
||||
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||
import { ShieldCheck, TrendingUp, Zap } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
gsap.registerPlugin(ScrollTrigger);
|
||||
|
||||
export default function GuaranteeSection(): React.JSX.Element {
|
||||
const items = [
|
||||
{
|
||||
icon: Zap,
|
||||
title: "SPEED",
|
||||
description: "Guaranteed delivery in 7 business days."
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
title: "RESULTS",
|
||||
description: "Design that converts visitors into clients."
|
||||
},
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
title: "SUPPORT",
|
||||
description: "Real support — not a ticket queue."
|
||||
}
|
||||
];
|
||||
|
||||
type AboutFeaturesSplitProps = {
|
||||
tag: string;
|
||||
title: string;
|
||||
description: string;
|
||||
primaryButton?: { text: string; href: string };
|
||||
secondaryButton?: { text: string; href: string };
|
||||
items: { icon: string | LucideIcon; title: string; description: string }[];
|
||||
textAnimation: "slide-up" | "fade-blur" | "fade";
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
const GuaranteeInline = () => {
|
||||
return (
|
||||
<div id="guarantee" data-section="guarantee">
|
||||
<SectionErrorBoundary name="guarantee">
|
||||
<AboutFeaturesSplit
|
||||
tag="OUR PROMISE"
|
||||
title="PROFESSIONAL WEB IN 7 DAYS"
|
||||
description="Or you don't pay. That simple."
|
||||
items={[
|
||||
{
|
||||
icon: Zap,
|
||||
title: "SPEED",
|
||||
description: "Guaranteed delivery in 7 business days.",
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
title: "RESULTS",
|
||||
description: "Design that converts visitors into clients.",
|
||||
},
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
title: "SUPPORT",
|
||||
description: "Real support — not a ticket queue.",
|
||||
},
|
||||
]}
|
||||
textAnimation="fade-blur"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/white-water-drop-background_23-2147787465.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
<section aria-label="About section" className="py-20">
|
||||
<div className="flex flex-col gap-8 md:gap-10 mx-auto w-content-width">
|
||||
<div className="flex flex-col items-center gap-2">
|
||||
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
||||
<p>{"OUR PROMISE"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"PROFESSIONAL WEB IN 7 DAYS"}
|
||||
variant={"fade-blur"}
|
||||
gradientText={true}
|
||||
tag="h2"
|
||||
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"Or you don't pay. That simple."}
|
||||
variant={"fade-blur"}
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
|
||||
/>
|
||||
|
||||
{(undefined || undefined) && (
|
||||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col md:flex-row md:items-stretch gap-5">
|
||||
<div className="flex flex-col justify-center gap-4 xl:gap-5 2xl:gap-6 p-6 xl:p-7 2xl:p-8 w-full md:w-4/10 2xl:w-35/100 card rounded">
|
||||
{items.map((item, index) => {
|
||||
const ItemIcon = resolveIcon(item.icon);
|
||||
return (
|
||||
<div key={item.title}>
|
||||
<div className="flex flex-col gap-2">
|
||||
<div className="flex items-center justify-center shrink-0 mb-1 size-10 primary-button rounded">
|
||||
<ItemIcon className="h-2/5 w-2/5 text-primary-cta-text" strokeWidth={1.5} />
|
||||
</div>
|
||||
<h3 className="text-2xl font-semibold">{item.title}</h3>
|
||||
<p className="text-base leading-snug">{item.description}</p>
|
||||
</div>
|
||||
{index < items.length - 1 && (
|
||||
<div className="mt-4 xl:mt-5 2xl:mt-6 border-b border-accent/40" />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
||||
<div className="p-px w-full md:w-6/10 2xl:w-7/10 h-80 md:h-auto card rounded overflow-hidden">
|
||||
<div className="relative size-full">
|
||||
<ImageOrVideo imageSrc={"http://img.b2bpic.net/free-photo/white-water-drop-background_23-2147787465.jpg"} className="absolute inset-0 object-cover rounded" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default function GuaranteeSection() {
|
||||
return (
|
||||
<div data-webild-section="guarantee" id="guarantee">
|
||||
<GuaranteeInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,57 +1,129 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "packages" section.
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import { Check } from "lucide-react";
|
||||
import Button from "@/components/ui/Button";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
|
||||
import React from 'react';
|
||||
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
const plans = [
|
||||
{
|
||||
tag: "WEB X PRO",
|
||||
price: "$14,900",
|
||||
period: "MXN",
|
||||
features: [
|
||||
"10 pages",
|
||||
"On-page SEO",
|
||||
"Forms & WhatsApp",
|
||||
"GMB Premium",
|
||||
"1 month support"
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Get Pro",
|
||||
href: "#contact"
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/start-up-landing-page-template_23-2148819558.jpg"
|
||||
},
|
||||
{
|
||||
tag: "WEB X DOMINATOR",
|
||||
price: "$24,900",
|
||||
period: "MXN",
|
||||
features: [
|
||||
"Everything in Pro",
|
||||
"Campaign Landing Page",
|
||||
"Google Analytics",
|
||||
"Traffic Report",
|
||||
"3 months support"
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Get Dominator",
|
||||
href: "#contact"
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/business-corporation-template_23-2151402198.jpg"
|
||||
}
|
||||
];
|
||||
|
||||
export default function PackagesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="packages" data-section="packages">
|
||||
<SectionErrorBoundary name="packages">
|
||||
<PricingMediaCards
|
||||
tag="PACKAGES"
|
||||
title="CHOOSE YOUR [X] LEVEL"
|
||||
description="Transparent pricing for complete solutions."
|
||||
plans={[
|
||||
{
|
||||
tag: "WEB X PRO",
|
||||
price: "$14,900",
|
||||
period: "MXN",
|
||||
features: [
|
||||
"10 pages",
|
||||
"On-page SEO",
|
||||
"Forms & WhatsApp",
|
||||
"GMB Premium",
|
||||
"1 month support",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Get Pro",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/start-up-landing-page-template_23-2148819558.jpg",
|
||||
},
|
||||
{
|
||||
tag: "WEB X DOMINATOR",
|
||||
price: "$24,900",
|
||||
period: "MXN",
|
||||
features: [
|
||||
"Everything in Pro",
|
||||
"Campaign Landing Page",
|
||||
"Google Analytics",
|
||||
"Traffic Report",
|
||||
"3 months support",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Get Dominator",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/business-corporation-template_23-2151402198.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="fade-blur"
|
||||
type PricingPlan = {
|
||||
tag: string;
|
||||
price: string;
|
||||
period: string;
|
||||
features: string[];
|
||||
primaryButton: { text: string; href: string };
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
const PackagesInline = () => (
|
||||
<section aria-label="Pricing section" className="py-20">
|
||||
<div className="flex flex-col gap-8 md:gap-10">
|
||||
<div className="flex flex-col items-center gap-2 w-content-width mx-auto">
|
||||
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
||||
<p>{"PACKAGES"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"CHOOSE YOUR [X] LEVEL"}
|
||||
variant={"fade-blur"}
|
||||
gradientText={true}
|
||||
tag="h2"
|
||||
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
|
||||
<TextAnimation
|
||||
text={"Transparent pricing for complete solutions."}
|
||||
variant={"fade-blur"}
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
|
||||
/>
|
||||
|
||||
{(undefined || undefined) && (
|
||||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-5 w-content-width mx-auto">
|
||||
{plans.map((plan) => (
|
||||
<ScrollReveal
|
||||
variant="slide-up"
|
||||
key={plan.tag}
|
||||
className="flex flex-col md:flex-row gap-6 md:gap-10 p-6 md:p-10 card rounded"
|
||||
>
|
||||
<div className="w-full md:w-1/2 aspect-square md:aspect-4/3 rounded overflow-hidden">
|
||||
<ImageOrVideo imageSrc={plan.imageSrc} videoSrc={plan.videoSrc} />
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col justify-center gap-2 w-full md:w-1/2">
|
||||
<div className="px-3 py-1 mb-1 w-fit text-sm card rounded">
|
||||
<p>{plan.price}{plan.period}</p>
|
||||
</div>
|
||||
<h3 className="text-4xl md:text-5xl font-semibold leading-[1.15] text-balance">{plan.tag}</h3>
|
||||
|
||||
<div className="flex flex-col gap-3 mt-1">
|
||||
{plan.features.map((feature) => (
|
||||
<div key={feature} className="flex items-start gap-3">
|
||||
<div className="flex items-center justify-center shrink-0 size-6 primary-button rounded">
|
||||
<Check className="size-3 text-primary-cta-text" strokeWidth={2} />
|
||||
</div>
|
||||
<span className="text-base leading-snug">{feature}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<Button text={plan.primaryButton.text} href={plan.primaryButton.href} variant="primary" className="w-fit mt-2 md:mt-3" />
|
||||
</div>
|
||||
</ScrollReveal>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
||||
export default function PackagesSection() {
|
||||
return (
|
||||
<div data-webild-section="packages" id="packages">
|
||||
<PackagesInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,59 +1,142 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "services" section.
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import LoopCarousel from "@/components/ui/LoopCarousel";
|
||||
import Button from "@/components/ui/Button";
|
||||
import { useButtonClick } from "@/hooks/useButtonClick";
|
||||
import { resolveIcon } from "@/utils/resolve-icon";
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
const items = [
|
||||
{
|
||||
title: "Custom Web Design",
|
||||
description: "Tailored, high-conversion visual design.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-prisms-colorful-effect_23-2148898178.jpg"
|
||||
},
|
||||
{
|
||||
title: "On-page SEO",
|
||||
description: "Ready to rank from day one.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-concrete-room-with-neon-lights_1048-12984.jpg"
|
||||
},
|
||||
{
|
||||
title: "Integrations",
|
||||
description: "WhatsApp, Forms, and GMB setup.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-light-prisms-effect_23-2148898152.jpg"
|
||||
},
|
||||
{
|
||||
title: "Analytics",
|
||||
description: "Google Analytics and traffic reporting.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-blue-white-bottle-designed-round-beautiful-white-wall_140725-11601.jpg"
|
||||
},
|
||||
{
|
||||
title: "Speed Optimization",
|
||||
description: "Performance focused architecture.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-metallic-cube-shape_23-2150979663.jpg"
|
||||
},
|
||||
{
|
||||
title: "Ongoing Support",
|
||||
description: "We ensure your site stays up.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spiky-black-ferromagnetic-liquid-metal-with-copy-space_23-2148253673.jpg"
|
||||
}
|
||||
];
|
||||
|
||||
type FeatureItem = {
|
||||
title: string;
|
||||
description: string;
|
||||
buttonIcon: string | LucideIcon;
|
||||
buttonHref?: string;
|
||||
buttonOnClick?: () => void;
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
interface FeaturesMediaCarouselProps {
|
||||
tag: string;
|
||||
title: string;
|
||||
description: string;
|
||||
primaryButton?: { text: string; href: string };
|
||||
secondaryButton?: { text: string; href: string };
|
||||
items: FeatureItem[];
|
||||
textAnimation: "slide-up" | "fade-blur" | "fade";
|
||||
}
|
||||
|
||||
const FeatureMediaCarouselCard = ({ item }: { item: FeatureItem }) => {
|
||||
const handleClick = useButtonClick(item.buttonHref, item.buttonOnClick);
|
||||
const Icon = resolveIcon(item.buttonIcon);
|
||||
|
||||
export default function ServicesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="services" data-section="services">
|
||||
<SectionErrorBoundary name="services">
|
||||
<FeaturesMediaCarousel
|
||||
tag="WHAT WE BUILD"
|
||||
title="WEBSITES THAT DO [X] THE WORK."
|
||||
description="From custom design to SEO and automation."
|
||||
items={[
|
||||
{
|
||||
title: "Custom Web Design",
|
||||
description: "Tailored, high-conversion visual design.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-prisms-colorful-effect_23-2148898178.jpg",
|
||||
},
|
||||
{
|
||||
title: "On-page SEO",
|
||||
description: "Ready to rank from day one.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-concrete-room-with-neon-lights_1048-12984.jpg",
|
||||
},
|
||||
{
|
||||
title: "Integrations",
|
||||
description: "WhatsApp, Forms, and GMB setup.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-light-prisms-effect_23-2148898152.jpg",
|
||||
},
|
||||
{
|
||||
title: "Analytics",
|
||||
description: "Google Analytics and traffic reporting.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-blue-white-bottle-designed-round-beautiful-white-wall_140725-11601.jpg",
|
||||
},
|
||||
{
|
||||
title: "Speed Optimization",
|
||||
description: "Performance focused architecture.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-metallic-cube-shape_23-2150979663.jpg",
|
||||
},
|
||||
{
|
||||
title: "Ongoing Support",
|
||||
description: "We ensure your site stays up.",
|
||||
buttonIcon: "ArrowRight",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spiky-black-ferromagnetic-liquid-metal-with-copy-space_23-2148253673.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
<div className="relative overflow-hidden aspect-square md:aspect-3/2 rounded">
|
||||
<ImageOrVideo imageSrc={item.imageSrc} videoSrc={item.videoSrc} className="absolute inset-0" />
|
||||
<div className="absolute inset-x-4 bottom-4 xl:inset-x-5 xl:bottom-5 2xl:inset-x-6 2xl:bottom-6 flex items-center justify-between gap-5 p-4 xl:p-5 2xl:p-6 card rounded backdrop-blur-sm">
|
||||
<div className="flex flex-col gap-1 min-w-0">
|
||||
<h3 className="text-2xl font-semibold leading-snug truncate">{item.title}</h3>
|
||||
<p className="text-base leading-snug truncate">{item.description}</p>
|
||||
</div>
|
||||
<a
|
||||
href={item.buttonHref}
|
||||
onClick={handleClick}
|
||||
aria-label="View more"
|
||||
className="flex items-center justify-center shrink-0 size-9 cursor-pointer primary-button rounded-full"
|
||||
>
|
||||
<Icon className="size-4 text-primary-cta-text" strokeWidth={2} />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const ServicesInline = () => {
|
||||
return (
|
||||
<section aria-label="Features section" className="w-full py-20">
|
||||
<div className="flex flex-col w-full gap-8 md:gap-10">
|
||||
<div className="flex flex-col items-center w-content-width mx-auto gap-2">
|
||||
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
||||
<p>{"WHAT WE BUILD"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"WEBSITES THAT DO [X] THE WORK."}
|
||||
variant={"slide-up"}
|
||||
gradientText={true}
|
||||
tag="h2"
|
||||
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"From custom design to SEO and automation."}
|
||||
variant={"slide-up"}
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
|
||||
/>
|
||||
|
||||
{(undefined || undefined) && (
|
||||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<LoopCarousel>
|
||||
{items.map((item) => (
|
||||
<FeatureMediaCarouselCard key={item.title} item={item} />
|
||||
))}
|
||||
</LoopCarousel>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default function ServicesSection() {
|
||||
return (
|
||||
<div data-webild-section="services" id="services">
|
||||
<ServicesInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user