From 531bcbb25ee10fb38b633d85ea6750341e42d591 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 03:11:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5eb031f..c2fcf1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DealerAI - AI Customer Engagement for Car Dealerships", - description: "Never miss a customer again. DealerAI's AI-powered system responds to every lead 24/7 and automates follow-ups. Boost conversions and let your team focus on closing deals.", - keywords: "AI for car dealerships, customer engagement, lead automation, sales AI, automotive CRM", - openGraph: { - title: "DealerAI - AI Customer Engagement Platform", - description: "Transform your dealership with 24/7 AI-powered customer engagement. Respond to every lead instantly.", - type: "website", - siteName: "DealerAI", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASjH9ZlaSXnWPA87VBus8QRz8X/a-modern-saas-dashboard-interface-showin-1772592862114-4af1edba.png", - alt: "DealerAI Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "DealerAI - AI for Car Dealerships", - description: "Automate customer engagement and close more deals with intelligent AI responses.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASjH9ZlaSXnWPA87VBus8QRz8X/a-modern-saas-dashboard-interface-showin-1772592862114-4af1edba.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DealerAI - AI Customer Engagement for Car Dealerships", description: "Never miss a customer again. DealerAI responds to every inquiry 24/7 with intelligent, personalized follow-ups."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}