diff --git a/src/app/page.tsx b/src/app/page.tsx index 2acdc19..b565e2f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="largeSmallSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="inset" primaryButtonStyle="gradient" secondaryButtonStyle="glass" @@ -46,7 +46,7 @@ export default function LandingPage() { @@ -102,11 +102,11 @@ export default function LandingPage() { features={[ { id: 1, - title: "Award-Winning Cappuccinos", description: "Our espresso-based signature drinks are crafted with meticulously sourced, single-origin beans roasted to perfection. Each cappuccino is a moment of artisanal excellence—velvety microfoam, balanced bitterness, and genuine flavor that transforms your break into a premium escape.", imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg?_wi=2", imageAlt: "Award-winning cappuccino with latte art" + title: "Award-Winning Cappuccinos", description: "Our espresso-based signature drinks are crafted with meticulously sourced, single-origin beans roasted to perfection. Each cappuccino is a moment of artisanal excellence—velvety microfoam, balanced bitterness, and genuine flavor that transforms your break into a premium escape.", imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg", imageAlt: "Award-winning cappuccino with latte art" }, { id: 2, - title: "Homemade Baked Goods", description: "Our iconic carrot cake is just the beginning. Every item—from fresh croissants to seasonal pastries—is crafted in-house daily with premium ingredients, no artificial additives. Comfort food that nourishes body and soul, trusted by hospital staff and visitors alike.", imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-spatula_114579-16524.jpg?_wi=1", imageAlt: "Homemade carrot cake with cream cheese frosting" + title: "Homemade Baked Goods", description: "Our iconic carrot cake is just the beginning. Every item—from fresh croissants to seasonal pastries—is crafted in-house daily with premium ingredients, no artificial additives. Comfort food that nourishes body and soul, trusted by hospital staff and visitors alike.", imageSrc: "http://img.b2bpic.net/free-photo/slice-honey-cake-spatula_114579-16524.jpg", imageAlt: "Homemade carrot cake with cream cheese frosting" }, { id: 3, @@ -114,7 +114,7 @@ export default function LandingPage() { }, { id: 4, - title: "Convenient Ordering & Service", description: "WhatsApp ordering available for quick, stress-free pickup—perfect for busy medical professionals and visitors on tight schedules. Professional, attentive service that respects your time while delivering genuine hospitality and personal care.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273178.jpg?_wi=1", imageAlt: "Fresh pastries ready for convenient pickup" + title: "Convenient Ordering & Service", description: "WhatsApp ordering available for quick, stress-free pickup—perfect for busy medical professionals and visitors on tight schedules. Professional, attentive service that respects your time while delivering genuine hospitality and personal care.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273178.jpg", imageAlt: "Fresh pastries ready for convenient pickup" } ]} title="The Sanctuary Experience" @@ -138,22 +138,22 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;