From 5f06d1e233cd5788e528653f28f879fc2fb9d122 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 11:18:10 +0000 Subject: [PATCH 1/2] Update src/app/owner-dashboard/page.tsx --- src/app/owner-dashboard/page.tsx | 125 +++++++------------------------ 1 file changed, 29 insertions(+), 96 deletions(-) diff --git a/src/app/owner-dashboard/page.tsx b/src/app/owner-dashboard/page.tsx index 1ed985b..f8ee2ff 100644 --- a/src/app/owner-dashboard/page.tsx +++ b/src/app/owner-dashboard/page.tsx @@ -7,7 +7,7 @@ import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; -import { Sparkles, Zap, Mail } from "lucide-react"; +import { Sparkles, Zap, Mail, Heart, BarChart3 } from "lucide-react"; const OwnerDashboardPage = () => { const navItems = [ @@ -20,8 +20,7 @@ const OwnerDashboardPage = () => { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Security", href: "#" }, @@ -29,8 +28,7 @@ const OwnerDashboardPage = () => { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About", href: "#about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -38,8 +36,7 @@ const OwnerDashboardPage = () => { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -47,8 +44,7 @@ const OwnerDashboardPage = () => { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Facebook", href: "https://facebook.com" }, @@ -78,47 +74,23 @@ const OwnerDashboardPage = () => { { Date: Wed, 11 Mar 2026 11:18:11 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 60 +++++++------------ 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..72e4c20 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,37 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; + fontSize?: number; + fill?: 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, + fontSize = 24, + fill = 'currentColor', + className = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1