update contact phone number and button variant in CallToActionSection

This commit is contained in:
2025-05-28 10:18:17 +02:00
parent 5c2714b202
commit 944066c42f
4 changed files with 7 additions and 6 deletions

View File

@ -114,8 +114,8 @@ const Footer = () => {
</address>
<p className="text-sm text-[var(--oms-white)]/80 mb-2">
Phone:{" "}
<a href="tel:+27120513282" className="hover:text-primary">
(012) 051 3282
<a href="tel:+27684855721" className="hover:text-primary">
+27 68 485 5721
</a>
</p>
<p className="text-sm text-[var(--oms-white)]/80 mb-2">

View File

@ -4,7 +4,7 @@ import Link from "next/link";
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
href?: string;
variant?: "primary" | "secondary" | "outline" | "ghost" | "destructive"; // Added more variants
variant?: "primary" | "secondary" | "outline" | "ghost" | "destructive" | "black";
size?: "sm" | "md" | "lg";
children: React.ReactNode;
className?: string;
@ -34,6 +34,7 @@ const Button: React.FC<ButtonProps> = ({
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
//linear-gradient(to right, #ead566, #e0be45) created using Tailwind's gradient utilities
//i want that variant
black:"inline-block bg-gray-800 text-white font-bold py-3 px-8 rounded-md hover:bg-gray-900 dark:bg-gray-900 dark:hover:bg-black transition-colors duration-300 font-poppins",
};
const sizeStyles = {