diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c55b51a..720ba46 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "IslamiqApp - 1100+ Islamic, Educational & Wellness Features", description: "All-in-one super app with Islamic tools, AI assistant, digital library, mental wellness, productivity gamification, and encrypted security. Lightweight, offline-capable, and feature-rich.", keywords: "Islamic app, Quran app, prayer times, Islamic education, AI assistant, mental wellness, productivity app, secure app", metadataBase: new URL("https://islamiqapp.com"), - alternates: { - canonical: "https://islamiqapp.com"}, - openGraph: { - title: "IslamiqApp - Islamic Education & Wellness Super App", description: "1100+ integrated features for spiritual growth, learning, wellness, and secure digital life.", url: "https://islamiqapp.com", siteName: "IslamiqApp", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639323.jpg", alt: "IslamiqApp Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "IslamiqApp - Complete Islamic & Wellness Ecosystem", description: "Quran, AI assistant, mental wellness, productivity, and secure encrypted platform for Islamic learning.", images: ["http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639323.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "IslamiqApp - Islamic Education & Wellness Super App", description: "All-in-one super app combining Islamic tools, AI learning, digital library, mental wellness tracking, and secure protection."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +