import type { Metadata } from "next"; import { Source_Code_Pro } from "next/font/google"; import "./globals.css"; const sourceCodePro = Source_Code_Pro({ variable: "--font-source-code-pro", subsets: ["latin"], }); export const metadata: Metadata = { title: "Tutorly - Connect with Expert Tutors Online", description: "Find vetted tutors and personalized learning on Tutorly. Connect with expert educators for 1-on-1 sessions in any subject. Join 50,000+ students and tutors today.", keywords: "online tutoring, tutor platform, 1-on-1 tutoring, homework help, test prep, SAT tutor, math tutoring, online learning", metadataBase: new URL("https://tutorly.com"), openGraph: { title: "Tutorly - Connect with Expert Tutors Online", description: "Find vetted tutors and personalized learning on Tutorly. Join thousands of students finding success.", type: "website", siteName: "Tutorly", images: [ { url: "https://img.b2bpic.net/free-photo/teacher-doing-english-lesson-online-his-students_23-2148963006.jpg", alt: "Tutorly Platform - Connect Students and Tutors" } ] }, twitter: { card: "summary_large_image", title: "Tutorly - Connect with Expert Tutors Online", description: "Find your perfect tutor or start earning as an educator. Personalized 1-on-1 learning at scale.", images: ["https://img.b2bpic.net/free-photo/teacher-doing-english-lesson-online-his-students_23-2148963006.jpg"] }, robots: { index: true, follow: true }, alternates: { canonical: "https://tutorly.com" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}