diff --git a/src/app/page.tsx b/src/app/page.tsx index 4bc1364..acc3f38 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -68,7 +68,7 @@ export default function HomePage() { title="Why Customers Love Chijilife" description="Experience the perfect blend of quality, authenticity, and taste that keeps our customers coming back." tag="Our Excellence" - tagAnimation="none" + tagAnimation="entrance-slide" features={[ { id: "1", title: "Perfectly Grilled Meats", tags: ["Expert Preparation", "Tender & Juicy"], @@ -96,7 +96,7 @@ export default function HomePage() { title="Signature Shawarmas" description="Masterfully crafted shawarmas made with premium ingredients and passion." tag="Customer Favorites" - tagAnimation="none" + tagAnimation="entrance-slide" products={[ { id: "1", name: "Classic Chicken Shawarma", price: "₦3,500", variant: "Tender Chicken • Fresh Vegetables • Signature Sauce", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=i3qaev", imageAlt: "Classic chicken shawarma with fresh vegetables"}, @@ -124,7 +124,7 @@ export default function HomePage() { title="Customer Reviews" description="Hear from our satisfied customers about their Chijilife experience." tag="Real Testimonials" - tagAnimation="none" + tagAnimation="entrance-slide" testimonials={[ { id: "1", title: "A Culinary Masterpiece", quote: "Chijilife Shawarma is a true delight for shawarma enthusiasts. Their menu boasts a tantalizing array of flavors, showcasing a perfect blend of savory meats, fresh vegetables, and mouthwatering sauces. The artful preparation by the skilled chefs ensures each shawarma is a culinary masterpiece.", name: "Sarah Mitchell", role: "Food Enthusiast", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q75r2h", imageAlt: "Sarah Mitchell testimonial"}, @@ -148,7 +148,7 @@ export default function HomePage() {
diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index c7181a0..b84378f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -5,13 +5,13 @@ interface SvgTextLogoProps { fontSize?: number; fontWeight?: number | string; textAnchor?: "start" | "middle" | "end"; - dominantBaseline?: "middle" | "auto" | "hanging" | "center" | "baseline" | "inherit"; + dominantBaseline?: "middle" | "auto" | "hanging" | "baseline" | "inherit" | "alphabetic" | "ideographic" | "mathematical" | "text-before-edge" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; className?: string; } const SvgTextLogo: React.FC = ({ text = "Logo", fontSize = 48, - fontWeight = "bold", textAnchor = "start", dominantBaseline = "center", className = ""}) => { + fontWeight = "bold", textAnchor = "start", dominantBaseline = "middle", className = ""}) => { return (