diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ea8a0d..c891d9b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -61,22 +61,21 @@ export default function LandingPage() { features={[ { id: 1, - title: "Dine-In", description: "Experience our welcoming dining room with scenic views. Family-owned hospitality since 2010.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-woman-brown-cap-white-tee-her-friend-stylish-top-smiles-rests-street-cafe_197531-18193.jpg?_wi=1" + title: "Dine-In", description: "Experience our welcoming dining room with scenic views. Family-owned hospitality since 2010.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-woman-brown-cap-white-tee-her-friend-stylish-top-smiles-rests-street-cafe_197531-18193.jpg" }, { id: 2, - title: "Takeout Available", description: "Enjoy our homemade classics at home. Call ahead at (870) 257-3595 for quick service.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-baked-fish-fillet-with-red-onions-narsharab-plate_140725-11495.jpg?_wi=1" + title: "Takeout Available", description: "Enjoy our homemade classics at home. Call ahead at (870) 257-3595 for quick service.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-baked-fish-fillet-with-red-onions-narsharab-plate_140725-11495.jpg" }, { id: 3, - title: "Open Until 7:00 PM", description: "Visit us for lunch or early dinner. Hours: 11 AM – 7 PM daily. Closed Mondays.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-woman-brown-cap-white-tee-her-friend-stylish-top-smiles-rests-street-cafe_197531-18193.jpg?_wi=2" + title: "Open Until 7:00 PM", description: "Visit us for lunch or early dinner. Hours: 11 AM – 7 PM daily. Closed Mondays.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-woman-brown-cap-white-tee-her-friend-stylish-top-smiles-rests-street-cafe_197531-18193.jpg" } ]} title="How to Enjoy Our Restaurant" description="Whether you prefer dining in our scenic restaurant or enjoying takeout at home, we're here to serve you." textboxLayout="default" useInvertedBackground={false} - mediaAnimation="slide-up" buttonAnimation="none" /> @@ -85,7 +84,7 @@ 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 = '', + fontSize = 48, + fontFamily = 'Arial, sans-serif', + fill = 'currentColor', + dominantBaseline = 'middle' +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file