diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1053c23..bbef63e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -5,29 +5,19 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
- variable: "--font-dm-sans",
- subsets: ["latin"],
+ variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Tutorly - Connect with Expert Tutors Online",
- description: "Find qualified tutors or become one on Tutorly. Personalized learning, flexible scheduling, and verified tutors. Join thousands of students succeeding with expert guidance.",
- keywords: "online tutoring, find tutors, private tutors, test prep, tutoring platform, education",
- metadataBase: new URL("https://tutorly.com"),
+ title: "Tutorly - Connect with Expert Tutors Online", description: "Find qualified tutors or become one on Tutorly. Personalized learning, flexible scheduling, and verified tutors. Join thousands of students succeeding with expert guidance.", keywords: "online tutoring, find tutors, private tutors, test prep, tutoring platform, education", metadataBase: new URL("https://tutorly.com"),
alternates: {
canonical: "https://tutorly.com"
},
openGraph: {
- title: "Tutorly - Expert Online Tutoring Platform",
- description: "Connect with qualified tutors for personalized learning. Easy matching, secure payments, and verified reviews.",
- url: "https://tutorly.com",
- siteName: "Tutorly",
- type: "website"
+ title: "Tutorly - Expert Online Tutoring Platform", description: "Connect with qualified tutors for personalized learning. Easy matching, secure payments, and verified reviews.", url: "https://tutorly.com", siteName: "Tutorly", type: "website"
},
twitter: {
- card: "summary_large_image",
- title: "Tutorly - Expert Online Tutoring",
- description: "Find the perfect tutor or start teaching on Tutorly today."
+ card: "summary_large_image", title: "Tutorly - Expert Online Tutoring", description: "Find the perfect tutor or start teaching on Tutorly today."
},
robots: {
index: true,
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 519baeb..ffd2476 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,88 +3,26 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
+import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
+import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
+import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
-import { BookOpen, MessageSquare } from 'lucide-react';
-import Link from 'next/link';
+import { BookOpen, Star, Users, MessageSquare, Zap } from 'lucide-react';
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "Features", id: "/features" },
- { name: "About", id: "/about" },
- { name: "Contact", id: "/contact" },
- { name: "Sign In", id: "https://tutorly.example.com/signin" }
+ { name: "About", id: "about" },
+ { name: "Features", id: "features" },
+ { name: "Team", id: "team" },
+ { name: "Contact", id: "contact" }
];
- const testimonials = [
- {
- id: "1",
- name: "Alex Martinez",
- role: "Student",
- company: "High School",
- rating: 5,
- imageSrc: "https://img.b2bpic.net/free-photo/vertical-shot-happy-young-woman-with-curly-hair-holds-notepad-pen-makes-notes-what-she-observes-around-city-dressed-casual-green-jumper-poses-outdoors-against-blurred-background_273609-56665.jpg",
- imageAlt: "Alex Martinez"
- },
- {
- id: "2",
- name: "Jordan Lee",
- role: "College Student",
- company: "University",
- rating: 5,
- imageSrc: "https://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-book_23-2149535705.jpg",
- imageAlt: "Jordan Lee"
- },
- {
- id: "3",
- name: "Casey Thompson",
- role: "Parent",
- company: "Family",
- rating: 5,
- imageSrc: "https://img.b2bpic.net/free-photo/woman-sitting-library-couch_273609-12733.jpg",
- imageAlt: "Casey Thompson"
- },
- {
- id: "4",
- name: "Morgan Palmer",
- role: "Tutor",
- company: "Tutorly",
- rating: 5,
- imageSrc: "https://img.b2bpic.net/free-photo/happy-boy-posing-with-tablet_23-2147655887.jpg",
- imageAlt: "Morgan Palmer"
- }
- ];
-
- const footerColumns = [
- {
- title: "Product",
- items: [
- { label: "Find Tutors", href: "/" },
- { label: "Become a Tutor", href: "/features" },
- { label: "Pricing", href: "/features" },
- { label: "How It Works", href: "/about" }
- ]
- },
- {
- title: "Company",
- items: [
- { label: "About Us", href: "/about" },
- { label: "Blog", href: "/" },
- { label: "Careers", href: "/" },
- { label: "Press", href: "/" }
- ]
- },
- {
- title: "Support",
- items: [
- { label: "Help Center", href: "/contact" },
- { label: "Contact Us", href: "/contact" },
- { label: "Terms of Service", href: "/" },
- { label: "Privacy Policy", href: "/" }
- ]
- }
- ];
+ const handleSubmit = (email: string) => {
+ console.log("Email submitted:", email);
+ };
return (