6 Commits

Author SHA1 Message Date
b7c1506847 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:39:09 +00:00
954cde815e Update src/app/page.tsx 2026-03-06 13:39:05 +00:00
44a13817be Update src/app/layout.tsx 2026-03-06 13:39:04 +00:00
890481774b Merge version_1 into main
Merge version_1 into main
2026-03-06 13:38:15 +00:00
620c0b8a9f Merge version_1 into main
Merge version_1 into main
2026-03-06 13:37:20 +00:00
07c7dd259c Merge version_1 into main
Merge version_1 into main
2026-03-06 13:36:05 +00:00
2 changed files with 16 additions and 44 deletions

View File

@@ -1,55 +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 "@/styles/globals.css";
import { Source_Sans_3 } from "next/font/google";
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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "StudyHub: AI-Powered Study Platform for Students", description: "Master any subject with interactive flashcards, progress tracking, and collaborative study tools. Join 50K+ students succeeding with StudyHub today.", keywords: "study app, flashcards, learning platform, exam preparation, study tools, student success", metadataBase: new URL("https://studyhub.com"), title: "StudyHub | Master Any Subject with Smart Study Tools", description: "AI-powered study companion. Learn faster, retain better. Interactive flashcards, progress tracking, and study collaboration."};
alternates: {
canonical: "https://studyhub.com"
},
openGraph: {
title: "StudyHub: Study Smarter, Learn Faster", description: "The ultimate study companion with intelligent flashcards, progress tracking, and collaborative learning tools.", url: "https://studyhub.com", siteName: "StudyHub", type: "website"
},
twitter: {
card: "summary_large_image", title: "StudyHub: Study Smarter", description: "AI-powered flashcards and learning tools for academic success"
},
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} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -71,17 +71,17 @@ export default function LandingPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Interactive Flashcards", description: "Create and study with intelligent flashcards using spaced repetition algorithms. Perfect for vocabulary, formulas, dates, and more.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/months-year-element-set_23-2149900237.jpg?_wi=1" }, title: "Interactive Flashcards", description: "Master any topic 3x faster with AI-powered spaced repetition. Create and study with intelligent flashcards perfect for vocabulary, formulas, dates, and more.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/months-year-element-set_23-2149900237.jpg?_wi=1" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/months-year-element-set_23-2149900237.jpg?_wi=2" } phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/months-year-element-set_23-2149900237.jpg?_wi=2" }
}, },
{ {
id: 2, id: 2,
title: "Progress Tracking", description: "Monitor your learning journey with detailed analytics and visual progress charts. See exactly what you've mastered and where to focus.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/green-background-with-computer-digital-learning-elements_23-2147599088.jpg?_wi=1" }, title: "Progress Tracking", description: "Track every study session and identify knowledge gaps instantly with detailed analytics. Monitor your learning journey with visual progress charts to see exactly what you've mastered.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/green-background-with-computer-digital-learning-elements_23-2147599088.jpg?_wi=1" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/green-background-with-computer-digital-learning-elements_23-2147599088.jpg?_wi=2" } phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/green-background-with-computer-digital-learning-elements_23-2147599088.jpg?_wi=2" }
}, },
{ {
id: 3, id: 3,
title: "Study Collaboration", description: "Share study materials, form study groups, and learn together with peers. Collaborative learning leads to better retention.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/brainstorming-training-group_1262-14804.jpg?_wi=1" }, title: "Study Collaboration", description: "Double your retention by studying with peers in real-time. Share study materials, form study groups, and learn together with collaborative features designed for better outcomes.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/brainstorming-training-group_1262-14804.jpg?_wi=1" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/brainstorming-training-group_1262-14804.jpg?_wi=2" } phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/brainstorming-training-group_1262-14804.jpg?_wi=2" }
} }
]} ]}