Merge version_3 into main #2
@@ -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({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunito.variable} antialiased`}
|
||||
className={`${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user