diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4e52f59..6cb482d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}