From 9d383315187a7f6ad7f127c5d14ed209c0dd80fb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 11:46:56 +0000 Subject: [PATCH 1/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2c15c93..96a9052 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -108,7 +108,7 @@ export default function ContactPage() { -- 2.49.1 From ed13b970a0bf7cbc86c1cbd1a9807c9b112fdb4a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 11:46:57 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..7a8fe0d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Nunito } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Vofix - AI-Powered Call Center & High-Ticket Sales Platform", + description: "Transform your call center and high-ticket sales operations with Vofix's enterprise AI platform. Get real-time analytics, predictive lead scoring, and agent coaching. Increase conversions by 40%.", + keywords: "AI call center, sales automation, predictive analytics, high-ticket sales, call recording, transcription, lead scoring, enterprise SaaS", + metadataBase: new URL("https://vofix.com"), + alternates: { + canonical: "https://vofix.com", + }, + openGraph: { + title: "Vofix - AI-Powered Call Center & Sales Solutions", + description: "Enterprise AI platform for call centers and high-ticket sales. Increase conversions by 40% with real-time analytics and predictive lead scoring.", + url: "https://vofix.com", + siteName: "Vofix", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BA8ikPncnfZHfRTbgLF5npzB8h/a-modern-sleek-ai-call-center-dashboard--1773920746974-0c92be26.png", + alt: "Vofix AI Dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Vofix - Enterprise AI for Call Centers & Sales", + description: "AI-powered call analysis, lead scoring, and real-time agent coaching for high-ticket sales teams.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BA8ikPncnfZHfRTbgLF5npzB8h/a-modern-sleek-ai-call-center-dashboard--1773920746974-0c92be26.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}