diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bff333b..346986f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { DM_Sans } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Votex Solution | Full-Service Digital Marketing Agency", description: "Transform your business with comprehensive digital marketing services: SEO, social media, PPC, content & more. Proven results, expert team, free consultation.", keywords: "digital marketing, SEO, social media marketing, PPC, content marketing, lead generation, digital agency", metadataBase: new URL("https://votexsolution.com"), - alternates: { - canonical: "https://votexsolution.com"}, - openGraph: { - title: "Votex Solution | Digital Marketing Agency", description: "Comprehensive digital marketing solutions that drive real ROI and sustainable growth for your business.", url: "https://votexsolution.com", siteName: "Votex Solution", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXcerqhOFjgFX0g2EwW9mvjJKo/modern-digital-marketing-hero-banner-wit-1772742605698-74396bca.png", alt: "Votex Solution Digital Marketing"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Votex Solution | Digital Marketing Agency", description: "Comprehensive digital marketing solutions that drive real ROI and sustainable growth.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXcerqhOFjgFX0g2EwW9mvjJKo/modern-digital-marketing-hero-banner-wit-1772742605698-74396bca.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Votex Solution - Digital Marketing Agency", description: "Transform your business with comprehensive digital marketing solutions. Expert team delivering data-driven strategies for SEO, social media, PPC, content marketing, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}