diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e8b2d6..ae4d1d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AI Voice Agents & Chatbots for Business | VoiceFlow", - description: "Automate customer calls and chats with AI voice agents. Perfect for hotels, restaurants, and clinics. 24/7 customer service powered by AI.", - keywords: "AI voice agent, chatbot, customer service automation, voice AI, business automation", - openGraph: { - title: "AI Voice Agents & Chatbots for Business | VoiceFlow", - description: "Automate customer calls and chats with AI voice agents. Perfect for hotels, restaurants, and clinics.", - type: "website", - siteName: "VoiceFlow", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdR4czogbkQn6SxSmklwlScQBH/a-modern-ai-voice-agent-dashboard-interf-1772920348371-e9e87c8d.png", - alt: "VoiceFlow AI Voice Agent Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AI Voice Agents & Chatbots for Business", - description: "Automate customer calls and chats 24/7", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdR4czogbkQn6SxSmklwlScQBH/a-modern-ai-voice-agent-dashboard-interf-1772920348371-e9e87c8d.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "VoiceFlow - AI Voice Agents for Your Business", description: "AI-powered voice agents that answer calls and chats automatically for hotels, restaurants, and clinics."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -