9 Commits

Author SHA1 Message Date
4fa9150072 Merge version_6 into main
Merge version_6 into main
2026-06-02 20:34:09 +00:00
a8af898a2f Update src/app/page.tsx 2026-06-02 20:34:05 +00:00
2214829aa0 Update src/app/contact/page.tsx 2026-06-02 20:34:05 +00:00
fcf6759af5 Merge version_5 into main
Merge version_5 into main
2026-06-02 20:31:52 +00:00
362008fa26 Update src/app/page.tsx 2026-06-02 20:31:49 +00:00
e14fba6e0d Merge version_5 into main
Merge version_5 into main
2026-06-02 20:31:10 +00:00
ebe3b9a3d4 Update src/app/page.tsx 2026-06-02 20:31:07 +00:00
eb994e9c1e Update src/app/about/page.tsx 2026-06-02 20:31:06 +00:00
47ce6fd577 Merge version_4 into main
Merge version_4 into main
2026-06-02 11:54:02 +00:00
3 changed files with 44 additions and 38 deletions

View File

@@ -67,7 +67,7 @@ export default function AboutPage() {
<div id="about-hob-media" data-section="about-hob-media">
<MetricSplitMediaAbout
title="About HoB Media"
description="HoB Media is a dedicated digital agency specializing in crafting compelling brands and executing innovative marketing strategies. We partner with businesses to build impactful identities, drive growth, and achieve measurable results."
description="HoB Media is a specialized agency solely focused on marketing and branding within the digital landscape, with a particular emphasis on the emerging NFT ecosystem. We empower businesses to forge distinctive identities and implement impactful marketing strategies to thrive."
metrics={[
{ value: "10+", title: "Years Experience" },
{ value: "200+", title: "Projects Completed" },

View File

@@ -17,6 +17,7 @@ const NAV_ITEMS = [
const FOOTER_COLUMNS = [
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "/portfolio" },
@@ -89,4 +90,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -15,6 +15,42 @@ import FooterBase from "@/components/sections/footer/FooterBase";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
const NAV_ITEMS = [
{ name: "Home", id: "/" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
];
const FOOTER_COLUMNS = [
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "/portfolio" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Services", items: [
{ label: "Marketing Strategy", href: "/services" },
{ label: "Brand Identity", href: "/services" },
{ label: "Digital Campaigns", href: "/services" },
{ label: "Social Media Management", href: "/services" },
],
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
}
];
export default function WebAgency2Page() {
return (
<ThemeProvider
@@ -32,18 +68,12 @@ export default function WebAgency2Page() {
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="HoB Media"
navItems={[
{ name: "Home", id: "/" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "/contact" }
]}
navItems={NAV_ITEMS}
button={{ text: "Get Started", href: "/contact" }}
/>
<HeroSplitDoubleCarousel
title="HoB Media: Digital Experiences"
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
description="Elevate your brand with expert marketing and branding services, including specialized strategies for the NFT ecosystem. We craft compelling identities and campaigns that captivate audiences and drive engagement."
tag="Award-Winning Agency"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -75,7 +105,7 @@ export default function WebAgency2Page() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
buttons={[{ text: "All Services", href: "#services" }]}
buttons={[{ text: "All Services", href: "/services" }]}
buttonAnimation="slide-up"
features={[
{
@@ -249,34 +279,9 @@ export default function WebAgency2Page() {
<FooterBase
logoText="HoB Media"
copyrightText="© 2026 | HoB Media"
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Work", href: "/portfolio" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services", items: [
{ label: "Web Development", href: "#" },
{ label: "SEO", href: "#" },
{ label: "Branding", href: "#" },
{ label: "UI/UX Design", href: "#" },
],
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
},
]}
columns={FOOTER_COLUMNS}
/>
</ReactLenis>
</ThemeProvider>
);
}
}