5 Commits

Author SHA1 Message Date
31d1d4b1f2 Update src/app/page.tsx 2026-03-05 23:46:00 +00:00
cce0ec47ba Update src/app/layout.tsx 2026-03-05 23:46:00 +00:00
f4d95f3d9a Merge version_1 into main
Merge version_1 into main
2026-03-05 23:43:29 +00:00
58e2f5c0a6 Merge version_1 into main
Merge version_1 into main
2026-03-05 23:42:44 +00:00
f44f1b9bcb Merge version_1 into main
Merge version_1 into main
2026-03-05 23:41:27 +00:00
2 changed files with 13 additions and 42 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"), 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -77,6 +77,7 @@ export default function LandingPage() {
{ text: "Learn More", href: "#features" }, { text: "Learn More", href: "#features" },
]} ]}
buttonAnimation="slide-up" 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" imageSrc="http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639323.jpg?_wi=1"
imageAlt="IslamiqApp Dashboard" imageAlt="IslamiqApp Dashboard"
mediaAnimation="opacity" mediaAnimation="opacity"