+
- {/* 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 (