diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5e07390..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CodeSniffs - Software Solutions Agency Mumbai", - description: "Professional software development agency offering web development, mobile apps, cloud services, and digital solutions. 250+ projects, 98% satisfaction. Based in Mumbai, India.", - keywords: "software development, web development, mobile app development, cloud services, e-commerce solutions, software agency, Mumbai", - metadataBase: new URL("https://codesniffs.com"), - alternates: { - canonical: "https://codesniffs.com", - }, - openGraph: { - title: "CodeSniffs - Build Your Digital Future", - description: "Professional software solutions for businesses - Web Development, Mobile Apps, Cloud Services", - url: "https://codesniffs.com", - siteName: "CodeSniffs", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ac9KYusPGO1ATYFX67WtPqJV0Y/modern-software-development-dashboard-in-1772881146832-c38c4fb4.png", - alt: "CodeSniffs Software Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CodeSniffs - Software Solutions Agency", - description: "Professional software development services for your business", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ac9KYusPGO1ATYFX67WtPqJV0Y/modern-software-development-dashboard-in-1772881146832-c38c4fb4.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}