From 21b5434ba31be5729eb90a9b8f884d6ef88a049e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 13:11:27 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..e44e936 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Digital Agency | Marketing, Web Design & SEO Services | Root Access Media", + description: "Root Access Media is your digital growth partner. We offer strategic marketing, stunning web design, and proven SEO services to accelerate your business online.", + keywords: "digital agency, digital marketing, web design, SEO services, marketing agency, growth strategy", + metadataBase: new URL("https://rootaccessmedia.com"), + alternates: { + canonical: "https://rootaccessmedia.com" + }, + openGraph: { + title: "Root Access Media - Digital Growth Simplified", + description: "Strategic marketing, web design, and SEO services to unlock your business's full online potential.", + url: "https://rootaccessmedia.com", + siteName: "Root Access Media", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1oaUunv22rts8BXVe7TKW7Zmq/a-modern-digital-agency-dashboard-interf-1773666619246-c8e9270a.png", + alt: "Root Access Media - Digital Agency Services" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Root Access Media - Digital Growth Agency", + description: "We combine strategic marketing, stunning web design, and SEO mastery to deliver results.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1oaUunv22rts8BXVe7TKW7Zmq/a-modern-digital-agency-dashboard-interf-1773666619246-c8e9270a.png"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}