From 00b77254fc410e65b95b617e7a035585a6b0a44a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:06:21 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 360ecf6..adf73b0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { DM_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Ovinest Agency - Professional Branding & Logo Design", description: "Get professional logo design, branding, packaging, and social media design services. 5.0 ⭐ rated creative agency. Call +880 1783-382857 for free consultation.", keywords: "logo design, branding agency, brand identity, packaging design, graphic design, creative agency, Bangladesh", metadataBase: new URL("https://ovinest.com"), - alternates: { - canonical: "https://ovinest.com"}, - openGraph: { - title: "Ovinest Agency - Build Your Brand", description: "Professional branding and design services that help businesses stand out and grow. Get started today.", siteName: "Ovinest Agency", type: "website", url: "https://ovinest.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/business-team-working-busy-workplace-concept_53876-137638.jpg", alt: "Ovinest creative branding agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ovinest Agency - Professional Branding", description: "Professional logo design and branding solutions for businesses.", images: ["http://img.b2bpic.net/free-photo/business-team-working-busy-workplace-concept_53876-137638.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ovinest - Professional Branding & Design Agency", description: "Professional logo design, branding, and visual identity systems that help businesses stand out and grow."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}