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 = () => { { (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