Update src/app/layout.tsx

This commit is contained in:
2026-03-05 20:46:46 +00:00
parent 3ee2b0746b
commit 082cda12bc

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={dmSans.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}