Compare commits
2 Commits
version_1_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8436a9bee5 | |||
|
|
d49de34302 |
@@ -1,246 +1,38 @@
|
||||
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import FeaturesSection from './HomePage/sections/Features';
|
||||
import SubjectsSection from './HomePage/sections/Subjects';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
import SocialProofSection from './HomePage/sections/SocialProof';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBillboard
|
||||
title="Master Every Exam with India's Question Bank"
|
||||
description="Access thousands of curated practice questions across competitive exams and academic subjects. Track your progress, identify weak areas, and achieve your target score with data-driven insights."
|
||||
primaryButton={{
|
||||
text: "Start Practicing Free",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Subjects",
|
||||
href: "#subjects",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-mobile-phone-office-desk-online-study_1163-2763.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
<SocialProofSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTestimonial
|
||||
tag="Our Mission"
|
||||
quote="Our mission is to democratize high-quality test preparation by providing a centralized repository that empowers every student to reach their full academic potential."
|
||||
author="Dr. Aarav Sharma"
|
||||
role="Founder, QBI"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pensive-student-glasses-is-making-notes-while-learning-new-material_613910-15026.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesDetailedCards
|
||||
tag="Key Features"
|
||||
title="Built for Exam Success"
|
||||
description="Powerful tools designed to turn your study sessions into guaranteed results."
|
||||
items={[
|
||||
{
|
||||
title: "Structured Learning",
|
||||
description: "Sequential paths designed by experts to build fundamental concepts before advancing.",
|
||||
tags: [
|
||||
"Exam Prep",
|
||||
"Curated",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-still-life-hard-exams_23-2149314051.jpg",
|
||||
},
|
||||
{
|
||||
title: "Performance Analytics",
|
||||
description: "Deep-dive data insights into your performance to pinpoint exactly which areas need your attention.",
|
||||
tags: [
|
||||
"Data",
|
||||
"Insights",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-senior-person-while-learning_23-2149072423.jpg",
|
||||
},
|
||||
{
|
||||
title: "Curated Question Library",
|
||||
description: "Thousands of vetted questions updated daily to reflect the latest exam patterns and difficulty levels.",
|
||||
tags: [
|
||||
"Large DB",
|
||||
"Updated",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-teenager-reading-near-bookcase_23-2147864135.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesSection />
|
||||
|
||||
<div id="subjects" data-section="subjects">
|
||||
<SectionErrorBoundary name="subjects">
|
||||
<FeaturesImageBento
|
||||
tag="Subjects"
|
||||
title="Comprehensive Subject Coverage"
|
||||
description="Covers all major competitive exams and core academic disciplines."
|
||||
items={[
|
||||
{
|
||||
title: "UPSC Prelims",
|
||||
description: "Comprehensive GS and CSAT coverage.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-landing-page-template_23-2149932311.jpg",
|
||||
},
|
||||
{
|
||||
title: "SSC CGL",
|
||||
description: "Quantitative aptitude and English prep.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-education-knowledge-power-25-flat-color-icon-pack-including-teacher-classroom-notes-graduation-keyboard_1142-24899.jpg",
|
||||
},
|
||||
{
|
||||
title: "Banking PO/Clerk",
|
||||
description: "Reasoning and Financial awareness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/science-designs-collection_1300-311.jpg",
|
||||
},
|
||||
{
|
||||
title: "Mathematics",
|
||||
description: "Core concepts for school and college.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-sticky-notes-magnifying-glass-school-supplies-plaster-background-flat-lay_176474-7039.jpg",
|
||||
},
|
||||
{
|
||||
title: "General Science",
|
||||
description: "Physics, Chemistry, and Biology.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/speech-bubbles-signs_24908-82077.jpg",
|
||||
},
|
||||
{
|
||||
title: "Current Affairs",
|
||||
description: "Daily updates on national and world events.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-computer-laptop-screen-showing-ideas-wooden-table_53876-16088.jpg",
|
||||
},
|
||||
{
|
||||
title: "Reasoning Ability",
|
||||
description: "Logical deduction practice modules.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-people-with-book-icon-overlay_53876-13774.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<SubjectsSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Impact"
|
||||
title="Success in Numbers"
|
||||
description="The trusted partner for thousands of successful aspirants across India."
|
||||
metrics={[
|
||||
{
|
||||
value: "50,000+",
|
||||
title: "Curated Questions",
|
||||
description: "Expertly verified practice questions added monthly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/classroom-class-study-academic-schedule_53876-132153.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="Success Stories"
|
||||
title="What Students Say"
|
||||
description="Join the growing community of students who achieved their goals using QBI."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Priya Singh",
|
||||
role: "UPSC Aspirant",
|
||||
quote: "QBI's analytics helped me double my efficiency in just 3 weeks. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-student-girl-glasses-with-pigtails-white-shirt-clenching-fists-happy-excited-rejoicing-her-success-standing-orange-wall_141793-47856.jpg",
|
||||
},
|
||||
{
|
||||
name: "Rohan Mehta",
|
||||
role: "Banking Aspirant",
|
||||
quote: "The most comprehensive bank of questions I have ever found. It saved my preparation time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-clever-caucasian-scholar-posing-with-her-textbooks-library_482257-123312.jpg",
|
||||
},
|
||||
{
|
||||
name: "Ananya Rao",
|
||||
role: "SSC Candidate",
|
||||
quote: "I cleared my exam on the first attempt thanks to the structured learning paths provided here.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-school-woman-wearing-medical-mask-sits-table-with-school-tools-showing-thumb-up_141793-122716.jpg",
|
||||
},
|
||||
{
|
||||
name: "Vikram Sethi",
|
||||
role: "University Student",
|
||||
quote: "Excellent clarity in explanations. A must-have tool for every student preparing for tests.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hipster-students-search-information-internet-website-laugh-happily-as-notice-funny-picture-mobile-phone-pose-together-desktop-with-laptop-computer-notepad-enjoy-communication_273609-29071.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sana Khan",
|
||||
role: "Exam Candidate",
|
||||
quote: "The daily current affairs questions are perfect for keeping me prepared for the latest trends.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-colleagues-working-together-cafe_273609-13305.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Support"
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common questions about our platform and study resources."
|
||||
categories={[
|
||||
{
|
||||
name: "Getting Started",
|
||||
items: [
|
||||
{
|
||||
question: "How do I start practicing?",
|
||||
answer: "Simply create an account and select your target exam to begin your personalized learning path.",
|
||||
},
|
||||
{
|
||||
question: "Are the questions verified?",
|
||||
answer: "Yes, all our questions are curated and verified by subject matter experts and educators.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Account & Pricing",
|
||||
items: [
|
||||
{
|
||||
question: "Is it completely free?",
|
||||
answer: "We offer a vast free library of questions, with advanced analytics features available for premium users.",
|
||||
},
|
||||
{
|
||||
question: "How do I track progress?",
|
||||
answer: "Your progress is automatically saved to your profile dashboard, where you can view performance metrics.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Start Today"
|
||||
text="Ready to achieve your target score? Start your journey with QBI today."
|
||||
primaryButton={{
|
||||
text: "Get Started for Free",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Contact Support",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
22
src/pages/HomePage/sections/About.tsx
Normal file
22
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTestimonial
|
||||
tag="Our Mission"
|
||||
quote="Our mission is to democratize high-quality test preparation by providing a centralized repository that empowers every student to reach their full academic potential."
|
||||
author="Dr. Aarav Sharma"
|
||||
role="Founder, QBI"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pensive-student-glasses-is-making-notes-while-learning-new-material_613910-15026.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Start Today"
|
||||
text="Ready to achieve your target score? Start your journey with QBI today."
|
||||
primaryButton={{
|
||||
text: "Get Started for Free",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Contact Support",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
48
src/pages/HomePage/sections/Faq.tsx
Normal file
48
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Support"
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common questions about our platform and study resources."
|
||||
categories={[
|
||||
{
|
||||
name: "Getting Started",
|
||||
items: [
|
||||
{
|
||||
question: "How do I start practicing?",
|
||||
answer: "Simply create an account and select your target exam to begin your personalized learning path.",
|
||||
},
|
||||
{
|
||||
question: "Are the questions verified?",
|
||||
answer: "Yes, all our questions are curated and verified by subject matter experts and educators.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Account & Pricing",
|
||||
items: [
|
||||
{
|
||||
question: "Is it completely free?",
|
||||
answer: "We offer a vast free library of questions, with advanced analytics features available for premium users.",
|
||||
},
|
||||
{
|
||||
question: "How do I track progress?",
|
||||
answer: "Your progress is automatically saved to your profile dashboard, where you can view performance metrics.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
49
src/pages/HomePage/sections/Features.tsx
Normal file
49
src/pages/HomePage/sections/Features.tsx
Normal file
@@ -0,0 +1,49 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesDetailedCards
|
||||
tag="Key Features"
|
||||
title="Built for Exam Success"
|
||||
description="Powerful tools designed to turn your study sessions into guaranteed results."
|
||||
items={[
|
||||
{
|
||||
title: "Structured Learning",
|
||||
description: "Sequential paths designed by experts to build fundamental concepts before advancing.",
|
||||
tags: [
|
||||
"Exam Prep",
|
||||
"Curated",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-still-life-hard-exams_23-2149314051.jpg",
|
||||
},
|
||||
{
|
||||
title: "Performance Analytics",
|
||||
description: "Deep-dive data insights into your performance to pinpoint exactly which areas need your attention.",
|
||||
tags: [
|
||||
"Data",
|
||||
"Insights",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-senior-person-while-learning_23-2149072423.jpg",
|
||||
},
|
||||
{
|
||||
title: "Curated Question Library",
|
||||
description: "Thousands of vetted questions updated daily to reflect the latest exam patterns and difficulty levels.",
|
||||
tags: [
|
||||
"Large DB",
|
||||
"Updated",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-teenager-reading-near-bookcase_23-2147864135.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Hero.tsx
Normal file
28
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBillboard
|
||||
title="Master Every Exam with India's Question Bank"
|
||||
description="Access thousands of curated practice questions across competitive exams and academic subjects. Track your progress, identify weak areas, and achieve your target score with data-driven insights."
|
||||
primaryButton={{
|
||||
text: "Start Practicing Free",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Subjects",
|
||||
href: "#subjects",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-mobile-phone-office-desk-online-study_1163-2763.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Metrics.tsx
Normal file
28
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Impact"
|
||||
title="Success in Numbers"
|
||||
description="The trusted partner for thousands of successful aspirants across India."
|
||||
metrics={[
|
||||
{
|
||||
value: "50,000+",
|
||||
title: "Curated Questions",
|
||||
description: "Expertly verified practice questions added monthly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/classroom-class-study-academic-schedule_53876-132153.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
41
src/pages/HomePage/sections/SocialProof.tsx
Normal file
41
src/pages/HomePage/sections/SocialProof.tsx
Normal file
@@ -0,0 +1,41 @@
|
||||
import ScrollReveal from '@/components/ui/ScrollReveal';
|
||||
import LoopCarousel from '@/components/ui/LoopCarousel';
|
||||
|
||||
export default function SocialProof() {
|
||||
const institutions = [
|
||||
"UPSC",
|
||||
"SSC",
|
||||
"IBPS",
|
||||
"CBSE",
|
||||
"ICSE",
|
||||
"State Boards",
|
||||
"RRB",
|
||||
"NTA"
|
||||
];
|
||||
|
||||
return (
|
||||
<section data-webild-section="social-proof" id="social-proof" className="relative w-full py-12 bg-background border-b border-border/10 overflow-hidden">
|
||||
<ScrollReveal variant="fade">
|
||||
<div className="w-content-width mx-auto px-6 mb-8 text-center">
|
||||
<p className="text-sm font-medium text-muted-foreground uppercase tracking-wider">
|
||||
Trusted by students preparing for top exam bodies
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="w-full">
|
||||
<LoopCarousel>
|
||||
<div className="flex items-center gap-16 md:gap-32 px-8 md:px-16">
|
||||
{institutions.map((name, idx) => (
|
||||
<div key={idx} className="flex items-center justify-center whitespace-nowrap">
|
||||
<span className="text-2xl md:text-3xl font-bold text-foreground/30 hover:text-foreground/80 transition-colors duration-300">
|
||||
{name}
|
||||
</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</LoopCarousel>
|
||||
</div>
|
||||
</ScrollReveal>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
57
src/pages/HomePage/sections/Subjects.tsx
Normal file
57
src/pages/HomePage/sections/Subjects.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "subjects" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function SubjectsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="subjects" data-section="subjects">
|
||||
<SectionErrorBoundary name="subjects">
|
||||
<FeaturesImageBento
|
||||
tag="Subjects"
|
||||
title="Comprehensive Subject Coverage"
|
||||
description="Covers all major competitive exams and core academic disciplines."
|
||||
items={[
|
||||
{
|
||||
title: "UPSC Prelims",
|
||||
description: "Comprehensive GS and CSAT coverage.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-geometric-landing-page-template_23-2149932311.jpg",
|
||||
},
|
||||
{
|
||||
title: "SSC CGL",
|
||||
description: "Quantitative aptitude and English prep.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-education-knowledge-power-25-flat-color-icon-pack-including-teacher-classroom-notes-graduation-keyboard_1142-24899.jpg",
|
||||
},
|
||||
{
|
||||
title: "Banking PO/Clerk",
|
||||
description: "Reasoning and Financial awareness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/science-designs-collection_1300-311.jpg",
|
||||
},
|
||||
{
|
||||
title: "Mathematics",
|
||||
description: "Core concepts for school and college.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-sticky-notes-magnifying-glass-school-supplies-plaster-background-flat-lay_176474-7039.jpg",
|
||||
},
|
||||
{
|
||||
title: "General Science",
|
||||
description: "Physics, Chemistry, and Biology.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/speech-bubbles-signs_24908-82077.jpg",
|
||||
},
|
||||
{
|
||||
title: "Current Affairs",
|
||||
description: "Daily updates on national and world events.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-computer-laptop-screen-showing-ideas-wooden-table_53876-16088.jpg",
|
||||
},
|
||||
{
|
||||
title: "Reasoning Ability",
|
||||
description: "Logical deduction practice modules.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-people-with-book-icon-overlay_53876-13774.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="Success Stories"
|
||||
title="What Students Say"
|
||||
description="Join the growing community of students who achieved their goals using QBI."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Priya Singh",
|
||||
role: "UPSC Aspirant",
|
||||
quote: "QBI's analytics helped me double my efficiency in just 3 weeks. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-student-girl-glasses-with-pigtails-white-shirt-clenching-fists-happy-excited-rejoicing-her-success-standing-orange-wall_141793-47856.jpg",
|
||||
},
|
||||
{
|
||||
name: "Rohan Mehta",
|
||||
role: "Banking Aspirant",
|
||||
quote: "The most comprehensive bank of questions I have ever found. It saved my preparation time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-clever-caucasian-scholar-posing-with-her-textbooks-library_482257-123312.jpg",
|
||||
},
|
||||
{
|
||||
name: "Ananya Rao",
|
||||
role: "SSC Candidate",
|
||||
quote: "I cleared my exam on the first attempt thanks to the structured learning paths provided here.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-school-woman-wearing-medical-mask-sits-table-with-school-tools-showing-thumb-up_141793-122716.jpg",
|
||||
},
|
||||
{
|
||||
name: "Vikram Sethi",
|
||||
role: "University Student",
|
||||
quote: "Excellent clarity in explanations. A must-have tool for every student preparing for tests.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hipster-students-search-information-internet-website-laugh-happily-as-notice-funny-picture-mobile-phone-pose-together-desktop-with-laptop-computer-notepad-enjoy-communication_273609-29071.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sana Khan",
|
||||
role: "Exam Candidate",
|
||||
quote: "The daily current affairs questions are perfect for keeping me prepared for the latest trends.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-colleagues-working-together-cafe_273609-13305.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user