Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 23:46:05 +00:00
2 changed files with 13 additions and 42 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -77,6 +77,7 @@ export default function LandingPage() {
{ text: "Learn More", href: "#features" },
]}
buttonAnimation="slide-up"
buttonClassName="bg-gradient-to-r from-primary-cta via-accent to-primary-cta shadow-lg hover:shadow-xl scale-105"
imageSrc="http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639323.jpg?_wi=1"
imageAlt="IslamiqApp Dashboard"
mediaAnimation="opacity"