diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 197b9fc..e13093a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Softcloud.ai24/7 - Enterprise IT Freelance Services & Cloud Solutions", - description: "Professional IT freelance services including software development, cloud architecture, and 24/7 support. Multi-cloud integration with AWS, Google Cloud, and Nvidia. Real-time invoicing and advanced authentication.", - keywords: "IT freelance services, software development, cloud consulting, AWS, Google Cloud, custom software, technical support, digital transformation", - metadataBase: new URL("https://softcloud.ai"), - alternates: { - canonical: "https://softcloud.ai", - }, - openGraph: { - title: "Softcloud.ai24/7 - Enterprise IT Solutions", - description: "Transform your business with professional IT services. Full-stack development, cloud migration, and 24/7 support.", - siteName: "Softcloud.ai24/7", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW3s03ndawXW2F0GHJ9VLH0nRz/a-cutting-edge-software-dashboard-interf-1772694801809-a9c82104.png", - alt: "Softcloud.ai Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Softcloud.ai24/7 - Enterprise IT Services", - description: "Professional IT freelance services and cloud solutions for modern businesses.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW3s03ndawXW2F0GHJ9VLH0nRz/a-cutting-edge-software-dashboard-interf-1772694801809-a9c82104.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Softcloud.ai - Enterprise-Grade IT Solutions", description: "Comprehensive freelance IT services with real-time project management, secure cloud integration, and 24/7 support. Powered by AWS, Google Cloud, and cutting-edge technology."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}