diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 171c873..93c3d0b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,78 +1,20 @@ import type { Metadata } from "next"; -import { Manrope, DM_Sans } 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 halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "UpDigital - Digital Agency & Solutions", - description: "Transform your business with innovative digital solutions. UpDigital delivers web development, app development, strategy & design services for growth-focused companies.", - keywords: "digital agency, web development, app development, digital strategy, UI/UX design, digital transformation, technology solutions", - metadataBase: new URL("https://updigital.com"), - alternates: { - canonical: "https://updigital.com", - }, - openGraph: { - title: "UpDigital - Transform Your Digital Vision", - description: "Innovative digital solutions for business growth", - siteName: "UpDigital", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU2NQyVbpdiYdFfk3hMq9ltr2M/a-modern-digital-agency-dashboard-interf-1772644003956-bfcb7b9c.png", - alt: "UpDigital Digital Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "UpDigital - Digital Agency", - description: "Transform your business with cutting-edge digital solutions", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU2NQyVbpdiYdFfk3hMq9ltr2M/a-modern-digital-agency-dashboard-interf-1772644003956-bfcb7b9c.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "UpDigital - Digital Solutions for Your Business", description: "Transform your digital vision into reality with UpDigital's cutting-edge technology and creative excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}