Update src/app/layout.tsx

This commit is contained in:
2026-03-03 10:13:20 +00:00
parent 97ce23fb4c
commit 3bec9b6a5f

View File

@@ -1,42 +1,17 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pulse Digital | Web Design & Development Agency", description: "Professional web design and development services. We create beautiful, high-performing websites that drive business results. Trusted by 150+ companies.", keywords: "web design, web development, digital agency, website design, web development company", metadataBase: new URL("https://pulsedigital.com"),
alternates: {
canonical: "https://pulsedigital.com"
},
openGraph: {
title: "Pulse Digital | Web Design & Development Agency", description: "Transform your digital presence with stunning websites and strategic design solutions.", siteName: "Pulse Digital", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/a-modern-sleek-web-design-dashboard-inte-1772527372132-0a49fa86.png", alt: "Pulse Digital - Web Design Agency"
}
],
},
twitter: {
card: "summary_large_image", title: "Pulse Digital | Web Design & Development", description: "Professional web design and development services for modern businesses.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/a-modern-sleek-web-design-dashboard-inte-1772527372132-0a49fa86.png"],
},
};
title: "Pulse Digital | Creative Web Solutions", description: "We craft beautiful, high-performing websites that convert visitors into customers."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1404,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}