From caa4fa307c5afd402ef44f72d19e9a056e5b8c7b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 01:27:11 +0000 Subject: [PATCH 1/4] Update src/app/chat/page.tsx --- src/app/chat/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/chat/page.tsx b/src/app/chat/page.tsx index 12ab931..b5d5882 100644 --- a/src/app/chat/page.tsx +++ b/src/app/chat/page.tsx @@ -94,7 +94,7 @@ export default function ChatPage() { "Formatted content with examples and analogies", ], imageSrc: - "http://img.b2bpic.net/free-psd/flat-design-language-learning-landing-page-template_23-2149924757.jpg", + "http://img.b2bpic.net/free-psd/flat-design-language-learning-landing-page-template_23-2149924757.jpg?_wi=2", }, { id: "multi-subject", @@ -106,7 +106,7 @@ export default function ChatPage() { "Adaptive difficulty levels based on your input", ], imageSrc: - "http://img.b2bpic.net/free-vector/flat-design-nps-infographic_23-2149966450.jpg", + "http://img.b2bpic.net/free-vector/flat-design-nps-infographic_23-2149966450.jpg?_wi=2", }, { id: "conversation-history", @@ -118,7 +118,7 @@ export default function ChatPage() { "Export learning notes and summaries", ], imageSrc: - "http://img.b2bpic.net/free-photo/elegant-uber-driver-giving-taxi-ride_23-2149241760.jpg", + "http://img.b2bpic.net/free-photo/elegant-uber-driver-giving-taxi-ride_23-2149241760.jpg?_wi=2", }, ]} gridVariant="three-columns-all-equal-width" @@ -139,7 +139,7 @@ export default function ChatPage() { description="Get personalized explanations tailored to your specific questions and learning style." subdescription="Ask → Understand → Excel" icon={Zap} - imageSrc="http://img.b2bpic.net/free-psd/flat-design-language-learning-landing-page-template_23-2149924757.jpg" + imageSrc="http://img.b2bpic.net/free-psd/flat-design-language-learning-landing-page-template_23-2149924757.jpg?_wi=3" imageAlt="AI Chat interface demonstration" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From d352380f59ab182ee34c9beca82e12616154053b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 01:27:11 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..5e1bf1a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "StudyMate - AI Study Platform for Students", + description: "StudyMate combines AI tutoring, smart scheduling, and task tracking in one platform. Get instant homework help, auto-generate study plans, and never miss a deadline.", + keywords: "student productivity app, AI tutoring, study planner, homework help, assignment tracker", + metadataBase: new URL("https://studymate.app"), + alternates: { + canonical: "https://studymate.app", + }, + openGraph: { + title: "StudyMate - Study Smarter, Not Harder", + description: "An intelligent productivity platform for students combining AI-powered tutoring, smart scheduling, and seamless task management.", + url: "https://studymate.app", + siteName: "StudyMate", + images: [ + { + url: "http://img.b2bpic.net/free-photo/education-information-school-ideas-concept_53876-120603.jpg", + alt: "StudyMate Platform Dashboard", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "StudyMate - AI-Powered Student Productivity", + description: "Master your studies with intelligent tutoring, smart scheduling, and automatic task management.", + images: ["http://img.b2bpic.net/free-photo/education-information-school-ideas-concept_53876-120603.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}