diff --git a/src/app/page.tsx b/src/app/page.tsx
index a21c5e1..a698e7d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -43,13 +43,13 @@ export default function LandingPage() {
@@ -130,7 +130,7 @@ export default function LandingPage() {
description="Whether you're planning a family celebration, a business lunch, or just craving authentic TexMex, we'd love to have you. Call ahead for reservations or walk-ins are always welcome."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
- imageSrc="http://img.b2bpic.net/free-photo/group-cheerful-friends-having-fun-while-having-dinner-toasting-with-wine-dining-table_637285-3338.jpg?_wi=3"
+ imageSrc="http://img.b2bpic.net/free-photo/group-cheerful-friends-having-fun-while-having-dinner-toasting-with-wine-dining-table_637285-3338.jpg"
imageAlt="Warm, inviting restaurant interior ready for your visit"
mediaAnimation="opacity"
mediaPosition="right"
diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
index f214190..39e82d3 100644
--- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
+++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
@@ -1,51 +1,34 @@
-"use client";
+import React, { SVGProps } from 'react';
-import { memo } from "react";
-import useSvgTextLogo from "./useSvgTextLogo";
-import { cls } from "@/lib/utils";
-
-interface SvgTextLogoProps {
- logoText: string;
- adjustHeightFactor?: number;
- verticalAlign?: "top" | "center";
+interface SvgTextLogoProps extends SVGProps {
+ text: string;
className?: string;
}
-const SvgTextLogo = memo(function SvgTextLogo({
- logoText,
- adjustHeightFactor,
- verticalAlign = "top",
- className = "",
-}) {
- const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
-
+const SvgTextLogo: React.FC = ({ text, className = '', ...props }) => {
return (
);
-});
+};
-SvgTextLogo.displayName = "SvgTextLogo";
-
-export default SvgTextLogo;
+export default SvgTextLogo;
\ No newline at end of file