Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fa9150072 | |||
| a8af898a2f | |||
| 2214829aa0 | |||
| fcf6759af5 | |||
| 362008fa26 | |||
| e14fba6e0d | |||
| ebe3b9a3d4 | |||
| eb994e9c1e | |||
| 47ce6fd577 |
@@ -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" },
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user