+
-
-
-
-
-
-
-
-
-
-
-
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/services/sales-promotions/page.tsx b/src/app/services/sales-promotions/page.tsx
index b0aace5..4f8a759 100644
--- a/src/app/services/sales-promotions/page.tsx
+++ b/src/app/services/sales-promotions/page.tsx
@@ -2,13 +2,11 @@
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 ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import Link from "next/link";
-import { Sparkles, Lightbulb, Star, Zap, CheckCircle, TrendingUp } from "lucide-react";
+import { Star, Zap, CheckCircle } from "lucide-react";
export default function SalesPromotionsPage() {
const navItems = [
@@ -69,7 +67,7 @@ export default function SalesPromotionsPage() {
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeLargeTitles"
- background="fluid"
+ background="circleGradient"
cardStyle="outline"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
@@ -81,116 +79,58 @@ export default function SalesPromotionsPage() {
brandName="TLC LIVE"
bottomLeftText="Auckland, New Zealand"
bottomRightText="hello@tlclive.co.nz"
- topBarClassName=""
/>
-
@@ -198,23 +138,20 @@ export default function SalesPromotionsPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/services/uniforms-apparel/page.tsx b/src/app/services/uniforms-apparel/page.tsx
index 92f7e58..95deda9 100644
--- a/src/app/services/uniforms-apparel/page.tsx
+++ b/src/app/services/uniforms-apparel/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 { Lightbulb, Star, Zap, CheckCircle, Shirt, Package, Truck, Palette } from "lucide-react";
import Link from "next/link";
+import { Star, Zap, CheckCircle } from "lucide-react";
+
+export default function UniformsApparelPage() {
+ 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 UniformsApparel() {
return (
-