import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Dropsphy - Apple-Inspired Design Platform", description: "Experience minimal elegance with Dropsphy. Premium design platform for modern workflows inspired by Apple's philosophy. Fast, secure, beautiful.", keywords: "minimal design, apple inspired, workflow platform, productivity software, cloud based", metadataBase: new URL("https://dropsphy.io"), alternates: { canonical: "https://dropsphy.io"}, openGraph: { title: "Dropsphy - Premium Design Platform", description: "Experience minimal elegance. Transform your workflows with Dropsphy.", url: "https://dropsphy.io", siteName: "Dropsphy", images: [ { url: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808027.jpg", alt: "Dropsphy platform showcase"}, ], type: "website"}, twitter: { card: "summary_large_image", title: "Dropsphy - Apple-Inspired Design Platform", description: "Premium design platform for modern workflows. Experience minimal elegance.", images: ["http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-floating-concrete-background_23-2150808027.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}