Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 25e51761e8 | |||
| eac85ae9e2 | |||
| d2eafe3809 | |||
| 31d1d4b1f2 | |||
| cce0ec47ba | |||
| f4d95f3d9a | |||
| 58e2f5c0a6 | |||
| f44f1b9bcb |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
@@ -94,27 +95,27 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: BookOpen,
|
icon: BookOpen,
|
||||||
title: "Smart Knowledge Library", description: "1000+ Islamic, educational, and cultural books in PDF, ePub, DOC formats with audio books, video lessons, highlighting, notes, and bookmarks."
|
title: "Smart Knowledge Library", description: "Instant Learning Access. 1000+ Islamic, educational, and cultural books in PDF, ePub, DOC formats with audio books, video lessons, highlighting, notes, and bookmarks."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Brain,
|
icon: Brain,
|
||||||
title: "AI-Powered Ask Me Anything", description: "Intelligent assistant answering questions on religion, science, history, technology, mental health with voice support and offline access."
|
title: "AI-Powered Ask Me Anything", description: "24/7 Expert Answers. Intelligent assistant answering questions on religion, science, history, technology, mental health with voice support and offline access."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Library,
|
icon: Library,
|
||||||
title: "Islamic Tools Hub", description: "Advanced Tasbeeh counter, prayer time reminders, Qibla direction, daily Adhkar, Quran with translations, tafsir, and multiple recitations."
|
title: "Islamic Tools Hub", description: "Complete Islamic Toolkit. Advanced Tasbeeh counter, prayer time reminders, Qibla direction, daily Adhkar, Quran with translations, tafsir, and multiple recitations."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
title: "Mental Wellness Companion", description: "Daily journaling, mood tracking, breathing exercises, sleep sessions, motivational quotes, and encrypted private journals."
|
title: "Mental Wellness Companion", description: "Daily Holistic Care. Daily journaling, mood tracking, breathing exercises, sleep sessions, motivational quotes, and encrypted private journals."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Target,
|
icon: Target,
|
||||||
title: "Learning & Productivity System", description: "Gamified challenges, achievement tracking, task timer, focus mode, study reminders, and comprehensive progress dashboards."
|
title: "Learning & Productivity System", description: "Gamified Growth Platform. Gamified challenges, achievement tracking, task timer, focus mode, study reminders, and comprehensive progress dashboards."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Shield,
|
icon: Shield,
|
||||||
title: "Kids Safe Mode", description: "Protected environment with Islamic stories, animations, educational games, safe content filtering, and parental controls."
|
title: "Kids Safe Mode", description: "Protected Family Space. Protected environment with Islamic stories, animations, educational games, safe content filtering, and parental controls."
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user