From ef220ebb32488e44cdadb7f498ccf28b05286d2c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 20:47:34 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 663e644..616c691 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,16 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Dialed Web | Premium Web Design & Digital Solutions", description: "Award-winning web agency creating premium digital experiences. Web design, development, branding, and marketing for global brands.", keywords: ["web design", "web development", "digital agency", "branding", "web solutions", "UI/UX design"], + title: "dialedweb | Premium Web Design & Digital Solutions", description: "Award-winning web agency creating premium digital experiences. Web design, development, branding, and marketing for global brands.", keywords: ["web design", "web development", "digital agency", "branding", "web solutions", "UI/UX design"], metadataBase: new URL("https://dialedweb.studio"), alternates: { canonical: "https://dialedweb.studio" @@ -19,14 +20,14 @@ export const metadata: Metadata = { follow: true }, openGraph: { - title: "Dialed Web | Premium Digital Agency", description: "Transform your vision into digital reality with award-winning design and development.", type: "website", siteName: "Dialed Web", images: [ + title: "dialedweb | Premium Digital Agency", description: "Transform your vision into digital reality with award-winning design and development.", type: "website", siteName: "dialedweb", images: [ { - url: "https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg", alt: "Dialed Web - Premium Web Design" + url: "https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg", alt: "dialedweb - Premium Web Design" } ] }, twitter: { - card: "summary_large_image", title: "Dialed Web - Premium Digital Solutions", description: "Award-winning web design and development for ambitious brands.", images: ["https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg"] + card: "summary_large_image", title: "dialedweb - Premium Digital Solutions", description: "Award-winning web design and development for ambitious brands.", images: ["https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg"] } }; @@ -39,7 +40,7 @@ export default function RootLayout({ {children}