146 lines
7.9 KiB
TypeScript
146 lines
7.9 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
|
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
|
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
|
import { Zap, HelpCircle } from "lucide-react";
|
|
|
|
export default function ServicesPage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "Work", id: "work" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Contact", id: "contact" },
|
|
];
|
|
|
|
const navItemsForFooter = [
|
|
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Work", href: "#work" }, { label: "About", href: "#about" }] },
|
|
{ items: [{ label: "Contact", href: "#contact" }, { label: "Blog", href: "#" }, { label: "Resources", href: "#" }, { label: "Careers", href: "#" }] },
|
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, { label: "Sitemap", href: "#" }] },
|
|
{ items: [{ label: "LinkedIn", href: "https://linkedin.com" }, { label: "Twitter", href: "https://twitter.com" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }] },
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="compact"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="blurBottom"
|
|
cardStyle="outline"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="BrandNest"
|
|
navItems={navItems}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services-intro" data-section="services-intro">
|
|
<TextSplitAbout
|
|
title="Our Services"
|
|
description={[
|
|
"At BrandNest Digital, we provide comprehensive, end-to-end digital solutions designed to transform your brand and accelerate growth. Our integrated approach combines strategy, creativity, and technology to deliver measurable results.",
|
|
"Whether you need a complete brand overhaul, a high-performing website, or strategic marketing campaigns, our team of experts is ready to partner with you. We don't just deliver services—we build lasting partnerships focused on your success.",
|
|
]}
|
|
buttons={[{ text: "Start Your Project", href: "#contact" }]}
|
|
showBorder={true}
|
|
useInvertedBackground={false}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="service-offerings" data-section="service-offerings">
|
|
<FeatureCardOne
|
|
title="What We Deliver"
|
|
description="Complete digital solutions that cover every aspect of your brand's online presence and growth strategy."
|
|
tag="Our Expertise"
|
|
tagIcon={Zap}
|
|
textboxLayout="default"
|
|
gridVariant="two-columns-alternating-heights"
|
|
animationType="slide-up"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{
|
|
title: "Digital Strategy & Planning",
|
|
description: "Comprehensive strategic analysis and planning that aligns your business objectives with digital opportunities. We conduct market research, competitor analysis, and audience insights to create actionable roadmaps for growth.",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adc2NvjE8ZwabGEP2r87LrDvCz/a-strategist-working-at-a-desk-with-mult-1772925771389-fd4d6248.png?_wi=2",
|
|
imageAlt: "Strategic planning and analysis",
|
|
},
|
|
{
|
|
title: "Brand Identity & Design",
|
|
description: "From logo design and visual identity to brand guidelines and messaging frameworks. We create distinctive, memorable brands that resonate with your target audience and differentiate you from competitors.",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adc2NvjE8ZwabGEP2r87LrDvCz/designer-creating-brand-identity-materia-1772925771924-8bc0f72f.png?_wi=2",
|
|
imageAlt: "Brand identity design",
|
|
},
|
|
{
|
|
title: "Web Design & Development",
|
|
description: "Beautiful, fast, and conversion-optimized websites built with modern technologies. Our sites are responsive, accessible, SEO-friendly, and designed to deliver exceptional user experiences that drive business results.",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adc2NvjE8ZwabGEP2r87LrDvCz/developer-coding-a-responsive-website-in-1772925771209-2411933a.png?_wi=2",
|
|
imageAlt: "Web design and development services",
|
|
},
|
|
{
|
|
title: "Digital Marketing & Growth",
|
|
description: "Integrated marketing campaigns across SEO, PPC, social media, email, and content. We optimize every channel to build awareness, drive qualified traffic, engage your audience, and convert prospects into loyal customers.",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adc2NvjE8ZwabGEP2r87LrDvCz/marketing-team-analyzing-campaign-perfor-1772925771408-564e9678.png?_wi=2",
|
|
imageAlt: "Digital marketing campaigns",
|
|
},
|
|
]}
|
|
tagAnimation="slide-up"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitMedia
|
|
title="Service Questions"
|
|
description="Learn more about how we work, our process, and how we can help your business grow."
|
|
tag="Service FAQs"
|
|
tagIcon={HelpCircle}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adc2NvjE8ZwabGEP2r87LrDvCz/a-helpful-customer-support-representativ-1772925771268-6ac0b2d9.png?_wi=1"
|
|
imageAlt="Customer support representative"
|
|
mediaAnimation="slide-up"
|
|
faqsAnimation="slide-up"
|
|
mediaPosition="right"
|
|
faqs={[
|
|
{
|
|
id: "1",
|
|
title: "What services does BrandNest offer?",
|
|
content: "We offer comprehensive digital services including strategic planning, brand identity design, website design and development, digital marketing, SEO, paid advertising, social media management, and content creation. Our services are tailored to meet each client's unique needs and goals.",
|
|
},
|
|
{
|
|
id: "2",
|
|
title: "How do you approach digital strategy?",
|
|
content: "Our strategic approach starts with deep discovery of your business, market, and competitors. We conduct thorough audience research, analyze market trends, and identify growth opportunities. This research informs our strategic recommendations and ensures all subsequent work is aligned with your business objectives.",
|
|
},
|
|
{
|
|
id: "3",
|
|
title: "Do you offer ongoing support after launch?",
|
|
content: "Yes, we offer various support packages including maintenance, updates, performance monitoring, and ongoing optimization. We believe in building long-term partnerships with our clients and providing continuous value through analytics monitoring and strategy refinement.",
|
|
},
|
|
]}
|
|
tagAnimation="slide-up"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
logoText="BrandNest"
|
|
columns={navItemsForFooter}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |