diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a46686..c256f00 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -50,6 +50,7 @@ export default function LandingPage() { imageAlt="Fresh market produce display" mediaAnimation="blur-reveal" imagePosition="right" + background={{ variant: "glowing-orb" }} useInvertedBackground={false} buttons={[ { text: "Learn More", href: "#about" }, @@ -59,15 +60,15 @@ export default function LandingPage() { testimonials={[ { name: "田中美咲", handle: "常連客", testimonial: "毎日新鮮な野菜が手に入ります。質が高くて、地元の人たちにとても愛されています。", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-food-package_23-2148869394.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/woman-with-food-package_23-2148869394.jpg" }, { name: "佐藤太郎", handle: "近所の方", testimonial: "このお店がないと生活できません。毎週通っています。スタッフも親切です。", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-young-woman-wearing-life-jacket_23-2147562086.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-young-woman-wearing-life-jacket_23-2147562086.jpg" }, { name: "鈴木花子", handle: "ファミリー", testimonial: "子どもたちも新鮮な野菜が大好きになりました。家族みんなでいつも利用しています。", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-girl-posing-studio_176474-65995.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-girl-posing-studio_176474-65995.jpg" } ]} testimonialRotationInterval={5000} @@ -100,7 +101,7 @@ export default function LandingPage() { tagAnimation="slide-up" features={[ { - title: "100% Organic Selection", description: "Carefully sourced organic produce from trusted local farmers", imageSrc: "http://img.b2bpic.net/free-photo/food-vegetable-colorful-background-tasty-fresh-vegetables-wooden-table-top-view-with-copy-space_1220-1220.jpg?_wi=1", imageAlt: "Organic fresh vegetables", buttonIcon: Leaf, + title: "100% Organic Selection", description: "Carefully sourced organic produce from trusted local farmers", imageSrc: "http://img.b2bpic.net/free-photo/food-vegetable-colorful-background-tasty-fresh-vegetables-wooden-table-top-view-with-copy-space_1220-1220.jpg", imageAlt: "Organic fresh vegetables", buttonIcon: Leaf, buttonHref: "#products" }, { @@ -112,7 +113,7 @@ export default function LandingPage() { buttonHref: "#products" }, { - title: "Daily Fresh Delivery", description: "New stock arrives daily to guarantee peak freshness", imageSrc: "http://img.b2bpic.net/free-photo/food-vegetable-colorful-background-tasty-fresh-vegetables-wooden-table-top-view-with-copy-space_1220-1220.jpg?_wi=2", imageAlt: "Fresh daily delivery", buttonIcon: Truck, + title: "Daily Fresh Delivery", description: "New stock arrives daily to guarantee peak freshness", imageSrc: "http://img.b2bpic.net/free-photo/food-vegetable-colorful-background-tasty-fresh-vegetables-wooden-table-top-view-with-copy-space_1220-1220.jpg", imageAlt: "Fresh daily delivery", buttonIcon: Truck, buttonHref: "#about" } ]} @@ -189,13 +190,13 @@ 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;