From 6947fc5caa6bd17be25dc6552283af96ad2c943d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:45:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1436 +------------------------------------------- 1 file changed, 7 insertions(+), 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0582e55..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Designly - Premium Digital Design Agency", - description: "Award-winning creative agency transforming brands through innovative UI/UX design, brand strategy, and digital development. Drive growth with world-class design.", - keywords: "design agency, UI/UX design, branding, digital design, creative agency, web design, brand identity, design strategy", - metadataBase: new URL("https://designly.com"), - alternates: { - canonical: "https://designly.com", - }, - openGraph: { - title: "Designly - Premium Digital Design Agency", - description: "Transform your vision into digital reality with award-winning design and strategy services.", - url: "https://designly.com", - siteName: "Designly", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/realistic-holi-landing-page-template_23-2149262386.jpg", - alt: "Designly Creative Agency Work", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Designly - Premium Digital Design Agency", - description: "Award-winning design and strategy transforming brands.", - images: ["http://img.b2bpic.net/free-vector/realistic-holi-landing-page-template_23-2149262386.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -