diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9aa1848..31d5020 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import localFont from "next/font/local"; 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 geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "Valeron - AI Sales Coaching Platform", description: "Close more deals with real-time AI coaching during calls and comprehensive post-call analysis. Level up your sales performance today.", keywords: "AI sales coaching, real-time call assistance, sales performance, team training, post-call analysis", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Valeron - AI Sales Coaching Platform", description: "Your AI wingman on every sales call. Real-time coaching during calls, post-call feedback, and team performance insights.", type: "website", siteName: "Valeron", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXcoPb0RPaJVXVOcDW1YX5t46n/a-modern-clean-ai-sales-coaching-dashboa-1772745282414-d8194a91.png", alt: "Valeron AI Coaching Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Valeron - AI Sales Coaching Platform", description: "Close more deals with real-time AI coaching on every call.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXcoPb0RPaJVXVOcDW1YX5t46n/a-modern-clean-ai-sales-coaching-dashboa-1772745282414-d8194a91.png"], - }, -}; + title: "Valeron - AI Sales Coaching", description: "Your AI wingman on every call. Live call assistance, post-call feedback, and performance insights."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +