Update src/app/layout.tsx

This commit is contained in:
2026-01-22 20:47:34 +00:00
parent 4955341e33
commit ef220ebb32

View File

@@ -1,15 +1,16 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Nunito } from "next/font/google"; import { Inter_Tight } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const nunito = Nunito({ const interTight = Inter_Tight({
variable: "--font-nunito", subsets: ["latin"], variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { 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"), metadataBase: new URL("https://dialedweb.studio"),
alternates: { alternates: {
canonical: "https://dialedweb.studio" canonical: "https://dialedweb.studio"
@@ -19,14 +20,14 @@ export const metadata: Metadata = {
follow: true follow: true
}, },
openGraph: { 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: { 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({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${nunito.variable} antialiased`} className={`${interTight.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}