Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-03-13 06:05:41 +00:00
2 changed files with 7 additions and 7 deletions

View File

@@ -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() {
<div id="order-cta" data-section="order-cta">
<ContactText
text="Craving Shawarma Right Now? Order your favorite masterpiece in seconds and experience the freshness that defines Chijilife."
animationType="none"
animationType="entrance-slide"
buttons={[
{
text: "Order on WhatsApp", href: "https://wa.me/yourwhatsappnumber"},
@@ -156,7 +156,7 @@ export default function HomePage() {
text: "Get Directions", href: "#"},
]}
background={{
variant: "plain"}}
variant: "blurBottom"}}
useInvertedBackground={false}
/>
</div>

View File

@@ -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<SvgTextLogoProps> = ({
text = "Logo", fontSize = 48,
fontWeight = "bold", textAnchor = "start", dominantBaseline = "center", className = ""}) => {
fontWeight = "bold", textAnchor = "start", dominantBaseline = "middle", className = ""}) => {
return (
<svg
viewBox="0 0 200 60"