From 0765d49b8b52b40334e2c887a4c4617dc5f95aa5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 03:34:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c892f9e..4b1092e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Prada Digital | Strategic Web Design for Business Growth", description: "We build high-converting websites that drive real traction for your business. Custom design, development, and digital marketing solutions.", keywords: "web design agency, website development, digital marketing, business growth, web development, conversion optimization", metadataBase: new URL("https://pradadigital.com"), - alternates: { - canonical: "https://pradadigital.com"}, - openGraph: { - title: "Prada Digital | Strategic Web Design for Business Growth", description: "We build high-converting websites that drive real traction for your business. Custom design, development, and digital marketing solutions.", url: "https://pradadigital.com", siteName: "Prada Digital", type: "website", images: [ - { - url: "https://pradadigital.com/og-image.jpg", alt: "Prada Digital - Strategic Web Design Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Prada Digital | Strategic Web Design for Business Growth", description: "We build high-converting websites that drive real traction for your business. Custom design, development, and digital marketing solutions.", images: ["https://pradadigital.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Prada Digital - Web Design & Development", description: "Strategic, conversion-optimized websites that drive real growth for your business."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}