diff --git a/src/app/page.tsx b/src/app/page.tsx
index a04897d..872a5b0 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -45,7 +45,7 @@ export default function LandingPage() {
@@ -166,20 +166,16 @@ export default function LandingPage() {
animationType="slide-up"
testimonials={[
{
- id: "1", name: "Aidan Fox-Bailey", role: "Local Visitor", company: "Gig Harbor", rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg", imageAlt: "Aidan Fox-Bailey portrait"
+ id: "1", name: "Aidan Fox-Bailey", role: "Local Visitor", company: "Gig Harbor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg", imageAlt: "Aidan Fox-Bailey portrait"
},
{
- id: "2", name: "David Schanhals", role: "Food Enthusiast", company: "Washington", rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-16435.jpg", imageAlt: "David Schanhals portrait"
+ id: "2", name: "David Schanhals", role: "Food Enthusiast", company: "Washington", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-16435.jpg", imageAlt: "David Schanhals portrait"
},
{
- id: "3", name: "Ava Carlson", role: "Family Diner", company: "Frequent Guest", rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg", imageAlt: "Ava Carlson portrait"
+ id: "3", name: "Ava Carlson", role: "Family Diner", company: "Frequent Guest", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg", imageAlt: "Ava Carlson portrait"
},
{
- id: "4", name: "Joe Roush", role: "Regular Customer", company: "Gig Harbor", rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-knitted-hat-sitting-against-yellow-surface_23-2148204634.jpg", imageAlt: "Joe Roush portrait"
+ id: "4", name: "Joe Roush", role: "Regular Customer", company: "Gig Harbor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-knitted-hat-sitting-against-yellow-surface_23-2148204634.jpg", imageAlt: "Joe Roush portrait"
}
]}
kpiItems={[
@@ -197,7 +193,7 @@ export default function LandingPage() {
description="Order online for takeout, delivery, or dine-in. We prepare fresh burgers made-to-order. Delivery available within Gig Harbor and surrounding areas."
tagIcon={ShoppingCart}
tagAnimation="slide-up"
- background={{ variant: "circleGradient" }}
+ background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/front-view-burger-with-egg-table_23-2148678850.jpg"
imageAlt="Delicious gourmet burger ready to order"
diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
index f214190..8709829 100644
--- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
+++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx
@@ -1,51 +1,33 @@
-"use client";
+import { 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);
-
+export default function SvgTextLogo({
+ text,
+ className = '',
+ ...props
+}: SvgTextLogoProps) {
return (
);
-});
-
-SvgTextLogo.displayName = "SvgTextLogo";
-
-export default SvgTextLogo;
+}