diff --git a/src/app/our-work/page.tsx b/src/app/our-work/page.tsx index 5c29a83..674381b 100644 --- a/src/app/our-work/page.tsx +++ b/src/app/our-work/page.tsx @@ -2,12 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import BlogCardTwo from "@/components/sections/blog/BlogCardTwo"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import Link from "next/link"; -import { Award, MessageCircle } from "lucide-react"; export default function OurWorkPage() { const navItems = [ @@ -68,7 +65,7 @@ export default function OurWorkPage() { borderRadius="soft" contentWidth="smallMedium" sizing="mediumLargeSizeLargeTitles" - background="fluid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="shadow" secondaryButtonStyle="solid" @@ -83,173 +80,11 @@ export default function OurWorkPage() { /> -
- -
- -
- -
-
); -} \ No newline at end of file +} diff --git a/src/app/product-catalogue/page.tsx b/src/app/product-catalogue/page.tsx index 3d029be..4207b16 100644 --- a/src/app/product-catalogue/page.tsx +++ b/src/app/product-catalogue/page.tsx @@ -2,21 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; +import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import Link from "next/link"; -import { - Package, - Shirt, - Gift, - Zap, - TrendingUp, - Store, - Star, - CheckCircle, -} from "lucide-react"; +import { Star, Zap, CheckCircle } from "lucide-react"; export default function ProductCataloguePage() { const navItems = [ @@ -77,7 +67,7 @@ export default function ProductCataloguePage() { borderRadius="soft" contentWidth="smallMedium" sizing="mediumLargeSizeLargeTitles" - background="fluid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="shadow" secondaryButtonStyle="solid" @@ -92,145 +82,49 @@ export default function ProductCataloguePage() { />
-
- + -
- -
-
-
- +
); -} \ No newline at end of file +} diff --git a/src/app/services/after-sales-programmes/page.tsx b/src/app/services/after-sales-programmes/page.tsx index f4c6623..850b0c4 100644 --- a/src/app/services/after-sales-programmes/page.tsx +++ b/src/app/services/after-sales-programmes/page.tsx @@ -2,15 +2,64 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Gift, Zap, Heart, CheckCircle, Smile, Target } from "lucide-react"; +import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; export default function AfterSalesProgrammesPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Our Work", id: "/our-work" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "Branded Merchandise", href: "/services/branded-merchandise" }, + { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, + { label: "Corporate Gifts", href: "/services/corporate-gifts" }, + { label: "Events & Signage", href: "/services/events-signage" }, + ], + }, + { + items: [ + { label: "Sales Promotions", href: "/services/sales-promotions" }, + { label: "Custom E-Stores", href: "/services/custom-estore" }, + { label: "Incentive Programmes", href: "/services/incentive-programmes" }, + { label: "Product Catalogue", href: "/product-catalogue" }, + ], + }, + { + items: [ + { label: "Our Work", href: "/our-work" }, + { label: "Industries", href: "/industries" }, + { label: "Insights", href: "/insights" }, + { label: "About", href: "/about" }, + ], + }, + { + items: [ + { label: "Contact", href: "/contact" }, + { label: "Client Login", href: "/client-login" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Use", href: "/terms" }, + ], + }, + { + items: [ + { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, + { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, + { label: "Auckland, New Zealand", href: "/contact" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, + ]; + return ( -
- -
- -
- +
-
- +
-
+
); -} \ No newline at end of file +} diff --git a/src/app/services/b2b-customer-rewards/page.tsx b/src/app/services/b2b-customer-rewards/page.tsx index 0050a53..0cbbb15 100644 --- a/src/app/services/b2b-customer-rewards/page.tsx +++ b/src/app/services/b2b-customer-rewards/page.tsx @@ -1,75 +1,65 @@ "use client"; -import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { - Sparkles, - Lightbulb, - Star, - Zap, - CheckCircle, - HandshakeIcon, - Award, -} from "lucide-react"; +import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; -const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Our Work", id: "/our-work" }, - { name: "Contact", id: "/contact" }, -]; +export default function B2bCustomerRewardsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Our Work", id: "/our-work" }, + { name: "Contact", id: "/contact" }, + ]; -const footerColumns = [ - { - items: [ - { label: "Branded Merchandise", href: "/services/branded-merchandise" }, - { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, - { label: "Corporate Gifts", href: "/services/corporate-gifts" }, - { label: "Events & Signage", href: "/services/events-signage" }, - ], - }, - { - items: [ - { label: "Sales Promotions", href: "/services/sales-promotions" }, - { label: "Custom E-Stores", href: "/services/custom-estore" }, - { label: "Incentive Programmes", href: "/services/incentive-programmes" }, - { label: "Product Catalogue", href: "/product-catalogue" }, - ], - }, - { - items: [ - { label: "Our Work", href: "/our-work" }, - { label: "Industries", href: "/industries" }, - { label: "Insights", href: "/insights" }, - { label: "About", href: "/about" }, - ], - }, - { - items: [ - { label: "Contact", href: "/contact" }, - { label: "Client Login", href: "/client-login" }, - { label: "Privacy Policy", href: "/privacy" }, - { label: "Terms of Use", href: "/terms" }, - ], - }, - { - items: [ - { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, - { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, - { label: "Auckland, New Zealand", href: "/contact" }, - { label: "Cookie Policy", href: "/cookies" }, - ], - }, -]; + const footerColumns = [ + { + items: [ + { label: "Branded Merchandise", href: "/services/branded-merchandise" }, + { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, + { label: "Corporate Gifts", href: "/services/corporate-gifts" }, + { label: "Events & Signage", href: "/services/events-signage" }, + ], + }, + { + items: [ + { label: "Sales Promotions", href: "/services/sales-promotions" }, + { label: "Custom E-Stores", href: "/services/custom-estore" }, + { label: "Incentive Programmes", href: "/services/incentive-programmes" }, + { label: "Product Catalogue", href: "/product-catalogue" }, + ], + }, + { + items: [ + { label: "Our Work", href: "/our-work" }, + { label: "Industries", href: "/industries" }, + { label: "Insights", href: "/insights" }, + { label: "About", href: "/about" }, + ], + }, + { + items: [ + { label: "Contact", href: "/contact" }, + { label: "Client Login", href: "/client-login" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Use", href: "/terms" }, + ], + }, + { + items: [ + { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, + { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, + { label: "Auckland, New Zealand", href: "/contact" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, + ]; -export default function B2BCustomerRewardsPage() { return (
-
- -
- -
+
-
- +
-
+
); } - -// Icon imports -import { TrendingUp } from "lucide-react"; \ No newline at end of file diff --git a/src/app/services/branded-merchandise/page.tsx b/src/app/services/branded-merchandise/page.tsx index bc46383..596e94b 100644 --- a/src/app/services/branded-merchandise/page.tsx +++ b/src/app/services/branded-merchandise/page.tsx @@ -1,13 +1,12 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Award, Lightbulb, Star, Zap, CheckCircle, HandshakeIcon } from "lucide-react"; +import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; export default function BrandedMerchandisePage() { const navItems = [ @@ -68,7 +67,7 @@ export default function BrandedMerchandisePage() { borderRadius="soft" contentWidth="smallMedium" sizing="mediumLargeSizeLargeTitles" - background="fluid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="shadow" secondaryButtonStyle="solid" @@ -83,90 +82,49 @@ export default function BrandedMerchandisePage() { />
-
+
-
- -
-
); -} \ No newline at end of file +} diff --git a/src/app/services/channel-programmes/page.tsx b/src/app/services/channel-programmes/page.tsx index 752a8f5..6b0e424 100644 --- a/src/app/services/channel-programmes/page.tsx +++ b/src/app/services/channel-programmes/page.tsx @@ -2,15 +2,64 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Package, Zap, TrendingUp, CheckCircle, Star, Lightbulb } from "lucide-react"; +import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; export default function ChannelProgrammesPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Our Work", id: "/our-work" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "Branded Merchandise", href: "/services/branded-merchandise" }, + { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, + { label: "Corporate Gifts", href: "/services/corporate-gifts" }, + { label: "Events & Signage", href: "/services/events-signage" }, + ], + }, + { + items: [ + { label: "Sales Promotions", href: "/services/sales-promotions" }, + { label: "Custom E-Stores", href: "/services/custom-estore" }, + { label: "Incentive Programmes", href: "/services/incentive-programmes" }, + { label: "Product Catalogue", href: "/product-catalogue" }, + ], + }, + { + items: [ + { label: "Our Work", href: "/our-work" }, + { label: "Industries", href: "/industries" }, + { label: "Insights", href: "/insights" }, + { label: "About", href: "/about" }, + ], + }, + { + items: [ + { label: "Contact", href: "/contact" }, + { label: "Client Login", href: "/client-login" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Use", href: "/terms" }, + ], + }, + { + items: [ + { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, + { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, + { label: "Auckland, New Zealand", href: "/contact" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, + ]; + return ( -
- -
- -
- +
-
- +
-
+
); -} \ No newline at end of file +} diff --git a/src/app/services/corporate-gifts/page.tsx b/src/app/services/corporate-gifts/page.tsx index 735cddc..b1127b0 100644 --- a/src/app/services/corporate-gifts/page.tsx +++ b/src/app/services/corporate-gifts/page.tsx @@ -3,13 +3,63 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Gift, Heart, Sparkles, Users, Target, TrendingUp } from "lucide-react"; import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; + +export default function CorporateGiftsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Our Work", id: "/our-work" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "Branded Merchandise", href: "/services/branded-merchandise" }, + { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, + { label: "Corporate Gifts", href: "/services/corporate-gifts" }, + { label: "Events & Signage", href: "/services/events-signage" }, + ], + }, + { + items: [ + { label: "Sales Promotions", href: "/services/sales-promotions" }, + { label: "Custom E-Stores", href: "/services/custom-estore" }, + { label: "Incentive Programmes", href: "/services/incentive-programmes" }, + { label: "Product Catalogue", href: "/product-catalogue" }, + ], + }, + { + items: [ + { label: "Our Work", href: "/our-work" }, + { label: "Industries", href: "/industries" }, + { label: "Insights", href: "/insights" }, + { label: "About", href: "/about" }, + ], + }, + { + items: [ + { label: "Contact", href: "/contact" }, + { label: "Client Login", href: "/client-login" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Use", href: "/terms" }, + ], + }, + { + items: [ + { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, + { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, + { label: "Auckland, New Zealand", href: "/contact" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, + ]; -export default function CorporateGifts() { return ( -
+
+
+ +
+ -
- -
-
-
- -
- -
-
-
-

- Let's Build Your Gift Programme -

-

- Share your gifting goals, recipient segments, and budget. We'll curate selections that genuinely strengthen relationships. -

-
- - Schedule a Gifting Consultation - - - Back to Services - -
-
-
-
- ); -} \ No newline at end of file +} diff --git a/src/app/services/custom-estore/page.tsx b/src/app/services/custom-estore/page.tsx index da4d0cc..598b041 100644 --- a/src/app/services/custom-estore/page.tsx +++ b/src/app/services/custom-estore/page.tsx @@ -1,15 +1,65 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import Link from 'next/link'; -import { Package, Zap, TrendingUp, Store, CheckCircle, Lightbulb } from 'lucide-react'; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; export default function CustomEstorePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Our Work", id: "/our-work" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "Branded Merchandise", href: "/services/branded-merchandise" }, + { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, + { label: "Corporate Gifts", href: "/services/corporate-gifts" }, + { label: "Events & Signage", href: "/services/events-signage" }, + ], + }, + { + items: [ + { label: "Sales Promotions", href: "/services/sales-promotions" }, + { label: "Custom E-Stores", href: "/services/custom-estore" }, + { label: "Incentive Programmes", href: "/services/incentive-programmes" }, + { label: "Product Catalogue", href: "/product-catalogue" }, + ], + }, + { + items: [ + { label: "Our Work", href: "/our-work" }, + { label: "Industries", href: "/industries" }, + { label: "Insights", href: "/insights" }, + { label: "About", href: "/about" }, + ], + }, + { + items: [ + { label: "Contact", href: "/contact" }, + { label: "Client Login", href: "/client-login" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Use", href: "/terms" }, + ], + }, + { + items: [ + { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, + { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, + { label: "Auckland, New Zealand", href: "/contact" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, + ]; + return ( - {/* Navbar */} - {/* Custom E-Stores Overview */} -
+
-
- - {/* E-Store Use Cases */} -
-
- {/* CTA Section */} -
+
- {/* Footer */} ); -} \ No newline at end of file +} diff --git a/src/app/services/employee-rewards/page.tsx b/src/app/services/employee-rewards/page.tsx index 8c6715a..748a82a 100644 --- a/src/app/services/employee-rewards/page.tsx +++ b/src/app/services/employee-rewards/page.tsx @@ -1,76 +1,65 @@ "use client"; -import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { - Sparkles, - Lightbulb, - Star, - Zap, - CheckCircle, - Users, - Award, - TrendingUp, -} from "lucide-react"; - -const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Our Work", id: "/our-work" }, - { name: "Contact", id: "/contact" }, -]; - -const footerColumns = [ - { - items: [ - { label: "Branded Merchandise", href: "/services/branded-merchandise" }, - { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, - { label: "Corporate Gifts", href: "/services/corporate-gifts" }, - { label: "Events & Signage", href: "/services/events-signage" }, - ], - }, - { - items: [ - { label: "Sales Promotions", href: "/services/sales-promotions" }, - { label: "Custom E-Stores", href: "/services/custom-estore" }, - { label: "Incentive Programmes", href: "/services/incentive-programmes" }, - { label: "Product Catalogue", href: "/product-catalogue" }, - ], - }, - { - items: [ - { label: "Our Work", href: "/our-work" }, - { label: "Industries", href: "/industries" }, - { label: "Insights", href: "/insights" }, - { label: "About", href: "/about" }, - ], - }, - { - items: [ - { label: "Contact", href: "/contact" }, - { label: "Client Login", href: "/client-login" }, - { label: "Privacy Policy", href: "/privacy" }, - { label: "Terms of Use", href: "/terms" }, - ], - }, - { - items: [ - { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, - { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, - { label: "Auckland, New Zealand", href: "/contact" }, - { label: "Cookie Policy", href: "/cookies" }, - ], - }, -]; +import Link from "next/link"; +import { Star, Zap, CheckCircle } from "lucide-react"; export default function EmployeeRewardsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Our Work", id: "/our-work" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "Branded Merchandise", href: "/services/branded-merchandise" }, + { label: "Uniforms & Apparel", href: "/services/uniforms-apparel" }, + { label: "Corporate Gifts", href: "/services/corporate-gifts" }, + { label: "Events & Signage", href: "/services/events-signage" }, + ], + }, + { + items: [ + { label: "Sales Promotions", href: "/services/sales-promotions" }, + { label: "Custom E-Stores", href: "/services/custom-estore" }, + { label: "Incentive Programmes", href: "/services/incentive-programmes" }, + { label: "Product Catalogue", href: "/product-catalogue" }, + ], + }, + { + items: [ + { label: "Our Work", href: "/our-work" }, + { label: "Industries", href: "/industries" }, + { label: "Insights", href: "/insights" }, + { label: "About", href: "/about" }, + ], + }, + { + items: [ + { label: "Contact", href: "/contact" }, + { label: "Client Login", href: "/client-login" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Use", href: "/terms" }, + ], + }, + { + items: [ + { label: "hello@tlclive.co.nz", href: "mailto:hello@tlclive.co.nz" }, + { label: "+64 9 XXX XXXX", href: "tel:+6493000000" }, + { label: "Auckland, New Zealand", href: "/contact" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, + ]; + return (
-
- -
- -
+
-
- +
-
+
); -} \ No newline at end of file +}