Update src/app/layout.tsx

This commit is contained in:
2026-03-04 00:17:29 +00:00
parent df0099492e
commit f9a22033d1

View File

@@ -1,60 +1,17 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Vaquer - Web Design & Marketing Agency", description: "Strategic web design and digital marketing services that drive measurable business growth. We create compelling digital experiences for brands ready to scale.", keywords: "web design, web development, digital marketing, branding, UI/UX design, e-commerce, SaaS design", metadataBase: new URL("https://vaquer.com"),
alternates: {
canonical: "https://vaquer.com"
},
openGraph: {
title: "Vaquer - Web Design & Marketing Agency", description: "Strategic web design and digital marketing services that drive measurable business growth.", url: "https://vaquer.com", siteName: "Vaquer", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASPS910MRVzAcc6d6ZwFvDWISF/modern-web-design-studio-workspace-with--1772583051827-9cd795bb.png", alt: "Vaquer Web Design Agency"
}
]
},
twitter: {
card: "summary_large_image", title: "Vaquer - Web Design & Marketing Agency", description: "Strategic web design and digital marketing services that drive measurable business growth.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASPS910MRVzAcc6d6ZwFvDWISF/modern-web-design-studio-workspace-with--1772583051827-9cd795bb.png"]
},
robots: {
index: true,
follow: true
}
};
title: "Vaquer - Strategic Web Design & Marketing", description: "Premium web design and marketing agency delivering strategic digital solutions that drive measurable business growth."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}