Update src/app/layout.tsx

This commit is contained in:
2026-03-05 09:06:40 +00:00
parent 169efd6f10
commit 027d0df093

View File

@@ -1,57 +1,17 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "Design Axis - Premium Digital Agency | Brand & Web Design Services", description: "Transform your brand with Design Axis. 5 years of proven excellence in branding, web design, development, and digital growth. Serving mid-market to enterprise clients.", keywords: "digital agency, brand design, web design, web development, e-commerce, digital marketing, branding agency, UX design", metadataBase: new URL("https://designaxis.com"),
alternates: {
canonical: "https://designaxis.com"},
openGraph: {
title: "Design Axis - Premium Digital Agency", description: "We build brands that win. Transform your digital presence with proven strategy and design excellence.", url: "https://designaxis.com", siteName: "Design Axis", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg", alt: "Design Axis - Premium Digital Agency"},
],
},
twitter: {
card: "summary_large_image", title: "Design Axis - Premium Digital Agency", description: "We build brands that win. Strategic design, development, and growth solutions.", images: ["http://img.b2bpic.net/free-photo/group-business-executives-interacting-with-each-other_1170-760.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Design Axis - Premium Digital Agency", description: "Partner with a digital agency that turns strategy into measurable results. From concept to launch, we deliver design, development, and growth."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}