From a52b2b90e17bf5ff8f414630e783fb416eeee025 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 08:23:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 136 +++++++++++++++++++++++---------------------- 1 file changed, 71 insertions(+), 65 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0544f18..f3779b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,27 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; +import localFont from "next/font/local"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -import { Roboto } from "next/font/google"; -import { Archivo } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +const geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "Marketing Agency | AgencyPro - Brand Strategy & Digital Growth", description: "Transform your brand with AgencyPro. Strategic marketing, creative design, and digital growth solutions for ambitious companies.", keywords: ["marketing agency", "brand strategy", "digital marketing", "creative design", "branding", "growth marketing", "social media marketing"], - metadataBase: new URL("https://agencypro.com"), - alternates: { - canonical: "https://agencypro.com" - }, - openGraph: { - title: "AgencyPro - Marketing Strategy & Creative Excellence", description: "Transform your brand into a market leader with our data-driven marketing strategies and creative solutions.", siteName: "AgencyPro", type: "website", images: [{ - url: "http://img.b2bpic.net/free-photo/people-stand-high-five-office_482257-119247.jpg", alt: "AgencyPro marketing services" - }] - }, - twitter: { - card: "summary_large_image", title: "AgencyPro - Brand Transformation & Growth", description: "Strategic marketing that delivers real results. Explore our services.", images: ["http://img.b2bpic.net/free-photo/people-stand-high-five-office_482257-119247.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +