Files
4df8d280-da9a-4b93-9e40-0bd…/src/app/services/page.tsx

155 lines
6.0 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Zap } from 'lucide-react';
import Link from 'next/link';
export default function ServicesPage() {
const navItems = [
{ name: "Services", id: "services" },
{ name: "Industries", id: "industries" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
items: [
{ label: "Services", href: "/services" },
{ label: "Industries", href: "/industries" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{ label: "Google Business Profiles", href: "/services" },
{ label: "Local SEO", href: "/services" },
{ label: "Reputation Management", href: "/services" },
{ label: "Automation & AI", href: "/services" },
],
},
{
items: [
{ label: "Restaurants", href: "/industries" },
{ label: "Local Services", href: "/industries" },
{ label: "SMBs", href: "/industries" },
{ label: "Case Studies", href: "/industries" },
],
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Resources", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="blurBottom"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Honu Logic"
navItems={navItems}
button={{ text: "Book A Call", href: "/contact" }}
animateOnLoad={true}
/>
</div>
<div id="hero" data-section="hero" className="relative min-h-screen">
<HeroOverlay
title="Our Services"
description="Comprehensive marketing automation and local SEO solutions designed to drive measurable growth for your business"
tag="What We Offer"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[
{ text: "Get Started", href: "/contact" },
{ text: "Free Audit", href: "/contact" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg?_wi=2"
imageAlt="marketing automation dashboard digital strategy technology interface business growth analytics"
textPosition="bottom-left"
showBlur={true}
showDimOverlay={false}
/>
</div>
<div id="services-detail" data-section="services-detail" className="py-20 bg-gradient-to-b">
<FeatureCardThree
features={[
{
id: "01",
title: "Google Business Profile Optimization",
description: "Maximize visibility with optimized posts, categories, photos, Q&A management, and service listings to get found by local customers.",
imageSrc: "http://img.b2bpic.net/free-photo/navigate-android-touch-wooden-social-illustrative_1421-365.jpg?_wi=2",
imageAlt: "Google Business Profile local search optimization business listing map interface search results",
},
{
id: "02",
title: "Reputation Management",
description: "Monitor reviews across platforms and leverage AI-assisted replies to build trust and respond to feedback instantly.",
imageSrc: "http://img.b2bpic.net/free-photo/collage-customer-experience-concept_23-2149367144.jpg?_wi=2",
imageAlt: "review management customer feedback ratings stars testimonials reputation",
},
{
id: "03",
title: "Local SEO",
description: "Strategic keyword targeting, citation building, and on-page optimization to dominate local search results.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-working-from-home_23-2149173354.jpg?_wi=2",
imageAlt: "local SEO optimization keyword strategy search ranking local business citations",
},
]}
title="Our Core Services"
description="Specialized solutions tailored to maximize your online visibility and customer engagement"
tag="Services"
tagIcon={Zap}
tagAnimation="slide-up"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact" className="py-24">
<ContactText
text="Ready to transform your online presence? Schedule a consultation with our marketing experts today."
animationType="entrance-slide"
buttons={[
{ text: "Book A Call", href: "/contact" },
{ text: "Learn More", href: "/" },
]}
background={{ variant: "plain" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Honu Logic"
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}