diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9282454..9944d7e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,24 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Honu Logic | Marketing Automation & Local SEO for Restaurants & SMBs", - description: "Automate your visibility and get more calls. Expert marketing automation, local SEO, and Google Business Profile optimization for restaurants and local service businesses.", - keywords: "marketing automation, local SEO, Google Business Profile, reputation management, restaurant marketing, lead generation", - metadataBase: new URL("https://honulogic.com"), - alternates: { - canonical: "https://honulogic.com", - }, - openGraph: { - title: "Honu Logic | Be Seen. Get Chosen.", - description: "We automate your visibility and follow-up so your business gets more calls, more orders, and more 5-star momentum.", - type: "website", - siteName: "Honu Logic", - }, - twitter: { - card: "summary_large_image", - title: "Honu Logic | Marketing Automation for Local Businesses", - description: "Automate visibility, capture leads, and grow your restaurant or service business with intelligent automation.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Honu Logic | Local Business Automation & Growth", description: "Automate your visibility and get more calls, orders, and 5-star reviews. We help restaurants and local SMBs grow with Google Business optimization, local SEO, and AI automation."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +