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 (