From 5211a05c5868d8086489a44b79b7ad2ea476eb3d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:19:05 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c5930af..416b014 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "PrimeSignal - Premium Website Design for Local Businesses", description: "High-converting website design for local businesses. Transform your online presence and generate more leads with our premium web design services.", keywords: "web design, local business website, website design agency, high-converting websites, digital agency, website redesign", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "PrimeSignal - Premium Website Design", description: "Premium websites that convert. We design beautiful, high-performing websites for local businesses ready to dominate online.", type: "website", siteName: "PrimeSignal", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png", alt: "PrimeSignal Premium Website Design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PrimeSignal - Premium Website Design", description: "High-converting websites for local businesses. Transform your online presence today.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png"], - }, -}; + title: "PrimeSignal - Premium Websites for Local Businesses", description: "High-converting websites designed for local businesses to attract customers and drive growth."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}