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