"use client" import Navbar from "@/components/navbar" import Footer from "@/components/footer" import { ArrowLeft, Facebook, Star, CheckCircle2 } from "lucide-react" import Link from "next/link" import Image from "next/image" import { useLanguage } from "@/lib/language-context" export default function FacebookGoogleDiscountPage() { const { t } = useLanguage() return (
{/* Header Section */}
{t.discounts.pages.fbGoogle.title}

{t.discounts.fbGoogle.title}
{t.discounts.pages.fbGoogle.discountLabel}

{/* Facebook Section */}

{t.discounts.pages.fbGoogle.fbTitle}

    {t.discounts.pages.fbGoogle.fbSteps.map((step: string, idx: number) => (
  • {step}
  • ))}

{t.discounts.pages.fbGoogle.helperText}

Facebook Like Help
{/* Google Section */}

{t.discounts.pages.fbGoogle.googleTitle}

    {t.discounts.pages.fbGoogle.googleSteps.map((step: string, idx: number) => (
  • {step}
  • ))}

{t.discounts.pages.fbGoogle.facebookLabel}

) }