From f9a22033d1c3aa39a95c298b2c02e8a853fcd87f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 00:17:29 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++----------------------------------------- 1 file changed, 5 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0cb942b..4805b72 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}