43 Commits

Author SHA1 Message Date
aa6635e215 Switch to version 5: modified src/app/page.tsx 2026-03-05 11:02:29 +00:00
ef51a6ddb2 Switch to version 5: modified src/app/layout.tsx 2026-03-05 11:02:29 +00:00
033acb3e35 Merge version_6 into main
Merge version_6 into main
2026-03-05 11:01:35 +00:00
17a38b8d46 Update src/app/page.tsx 2026-03-05 11:01:31 +00:00
de653c5cc0 Merge version_6 into main
Merge version_6 into main
2026-03-05 10:47:32 +00:00
7797fe13bb Update src/app/page.tsx 2026-03-05 10:47:28 +00:00
646c238e74 Update src/app/layout.tsx 2026-03-05 10:47:28 +00:00
eecf3c66c8 Switch to version 4: modified src/app/page.tsx 2026-03-05 07:35:57 +00:00
7241affd92 Switch to version 4: modified src/app/layout.tsx 2026-03-05 07:35:57 +00:00
c5d60464ed Merge version_5 into main
Merge version_5 into main
2026-03-05 07:25:37 +00:00
debebcea0e Update src/app/page.tsx 2026-03-05 07:25:33 +00:00
5af84a80f8 Merge version_5 into main
Merge version_5 into main
2026-03-05 07:23:43 +00:00
5c590717b5 Update src/app/page.tsx 2026-03-05 07:23:38 +00:00
4c37a3ba1e Merge version_5 into main
Merge version_5 into main
2026-03-05 07:21:57 +00:00
50b6819550 Update src/app/page.tsx 2026-03-05 07:21:54 +00:00
c16032ab6c Merge version_5 into main
Merge version_5 into main
2026-03-05 07:13:32 +00:00
1a7199af31 Update src/app/page.tsx 2026-03-05 07:13:27 +00:00
9471df7e74 Merge version_5 into main
Merge version_5 into main
2026-03-05 07:11:55 +00:00
4d0c42523d Update src/app/page.tsx 2026-03-05 07:11:45 +00:00
f146edc16b Merge version_5 into main
Merge version_5 into main
2026-03-05 07:10:14 +00:00
fd2c124c4b Update src/app/page.tsx 2026-03-05 07:10:10 +00:00
e16e84d2df Merge version_5 into main
Merge version_5 into main
2026-03-05 07:08:18 +00:00
c9199b771f Update src/app/page.tsx 2026-03-05 07:08:14 +00:00
fe7ae35755 Update src/app/layout.tsx 2026-03-05 07:08:14 +00:00
8db3f3c9d8 Merge version_4 into main
Merge version_4 into main
2026-03-05 07:02:16 +00:00
629d6efbcd Update src/app/page.tsx 2026-03-05 07:02:12 +00:00
bd3b6a8e6c Update src/app/layout.tsx 2026-03-05 07:02:12 +00:00
16990d57cd Merge version_3 into main
Merge version_3 into main
2026-03-05 07:01:18 +00:00
b8cfce2006 Update src/app/page.tsx 2026-03-05 07:01:14 +00:00
e4567e9c54 Update src/app/facilities/page.tsx 2026-03-05 07:01:13 +00:00
98127b5a61 Update src/app/about/page.tsx 2026-03-05 07:01:13 +00:00
270f44b14b Merge version_3 into main
Merge version_3 into main
2026-03-05 07:00:16 +00:00
fc8c104de0 Update src/app/page.tsx 2026-03-05 07:00:12 +00:00
1474d9619c Update src/app/facilities/page.tsx 2026-03-05 07:00:12 +00:00
17aa1386b4 Update src/app/courses/page.tsx 2026-03-05 07:00:11 +00:00
53f642d6e8 Update src/app/contact/page.tsx 2026-03-05 07:00:11 +00:00
4410fd4d4e Update src/app/admissions/page.tsx 2026-03-05 07:00:10 +00:00
fbdb7cc573 Update src/app/about/page.tsx 2026-03-05 07:00:10 +00:00
f8d922c9d1 Merge version_3 into main
Merge version_3 into main
2026-03-05 06:56:15 +00:00
b017e3de24 Update src/app/page.tsx 2026-03-05 06:56:11 +00:00
cb06d28e3e Update src/app/layout.tsx 2026-03-05 06:56:10 +00:00
b0d4407cd2 Update src/app/about/page.tsx 2026-03-05 06:56:10 +00:00
273b1c04e2 Merge version_1 into main
Merge version_1 into main
2026-03-05 06:52:25 +00:00
7 changed files with 523 additions and 696 deletions

View File

@@ -1,13 +1,12 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { Award, Star, Users } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Award, Star, Users, Phone } from "lucide-react";
export default function AboutPage() {
return (
@@ -17,12 +16,13 @@ export default function AboutPage() {
borderRadius="rounded"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -37,114 +37,86 @@ export default function AboutPage() {
/>
</div>
<div id="about-intro" data-section="about-intro">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "About" },
{ type: "text", content: "College of Management, Khamgaon" },
{/* About Hero Section */}
<div id="about-hero" data-section="about-hero">
<TextSplitAbout
title="About College of Management, Khamgaon"
description={[
"Founded in 2007, College of Management has established itself as a leading institution of higher education in Khamgaon, Buldhana district, Maharashtra. We are proudly affiliated with Sant Gadge Baba Amravati University (SGBAU), ensuring that our academic programs meet the highest standards of quality and recognition.", "Our mission is to provide quality education that empowers students with knowledge, skills, and values necessary for personal growth and professional success. We believe in fostering an environment that encourages critical thinking, creativity, and social responsibility.", "With a diverse portfolio of undergraduate and postgraduate programs, state-of-the-art infrastructure, and a dedicated faculty, we are committed to shaping the future leaders and professionals of tomorrow."
]}
buttons={[
{ text: "Our Mission & Values", href: "#" },
{ text: "Contact Us", href: "/contact" },
{ text: "Explore Our Programs", href: "/courses" },
{ text: "Apply Now", href: "/admissions" },
]}
buttonAnimation="slide-up"
showBorder={true}
useInvertedBackground={false}
/>
</div>
<div id="college-profile" data-section="college-profile">
{/* Our Mission & Values Section */}
<div id="mission-values" data-section="mission-values">
<FeatureCardOne
title="Our Legacy & Excellence"
description="Since 2007, College of Management has been committed to delivering quality education and developing skilled professionals for the nation"
tag="About Our Journey"
tagIcon={Award}
tagAnimation="slide-up"
features={[
{
title: "Founded in 2007",
description: "Established with a vision to provide quality higher education in Khamgaon, affiliated with Sant Gadge Baba Amravati University",
imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=4",
imageAlt: "College campus founding",
},
{
title: "ISO Certified Institution",
description: "Our commitment to quality is reflected in our ISO certification, ensuring consistent excellence in all academic and administrative processes",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=5",
imageAlt: "ISO certification",
},
{
title: "Student Success Focus",
description: "We measure our success by the achievements of our students in academics, placements, competitive exams, and personal development",
imageSrc: "http://img.b2bpic.net/free-photo/diversity-students-graduation-success-celebration-concept_53876-26400.jpg",
imageAlt: "Student success",
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="values" data-section="values">
<FeatureCardOne
title="Our Core Values"
description="These principles guide every decision and action we take in serving our students and the community"
tag="What We Stand For"
title="Our Mission & Core Values"
description="The principles that guide our educational excellence and student development"
tag="What Drives Us"
tagIcon={Star}
tagAnimation="slide-up"
features={[
{
title: "Academic Excellence",
description: "Maintaining highest standards of curriculum, faculty expertise, and student learning outcomes across all programs",
imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=4",
imageAlt: "Academic excellence",
title: "Excellence in Education", description: "We are committed to delivering high-quality education through innovative teaching methods, industry-aligned curriculum, and continuous academic improvement.", imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=2", imageAlt: "excellence in education"
},
{
title: "Student-Centric Approach",
description: "Every policy and program is designed with student welfare, development, and success as the primary objective",
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-people-talking-while-using-laptop-library_74855-1657.jpg?_wi=2",
imageAlt: "Student focus",
title: "Student-Centric Approach", description: "Every student is unique. We provide personalized mentoring, academic support, and career guidance to help each student reach their full potential.", imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=2", imageAlt: "student-centric approach"
},
{
title: "Holistic Development",
description: "We foster intellectual, physical, social, and emotional growth through diverse activities and mentoring programs",
imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=4",
imageAlt: "Holistic development",
title: "Social Responsibility", description: "Through NSS programs, community engagement, and cultural initiatives, we foster a sense of social awareness and responsibility among our students.", imageSrc: "http://img.b2bpic.net/free-photo/mother-daughter-preparing-plant-tree-woods_482257-91250.jpg?_wi=2", imageAlt: "social responsibility"
},
{
title: "Holistic Development", description: "We believe in developing well-rounded individuals through academics, sports, cultural activities, and co-curricular programs.", imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=2", imageAlt: "holistic development"
},
{
title: "Industry Integration", description: "Our programs are designed in partnership with industry experts to ensure students gain practical skills and industry-ready competencies.", imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=2", imageAlt: "industry integration"
},
{
title: "Quality & Accreditation", description: "ISO certification and SGBAU affiliation ensure that our institution maintains the highest standards of quality, infrastructure, and educational delivery.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-still-life-hard-exams_23-2149314038.jpg?_wi=2", imageAlt: "quality accreditation"
},
]}
gridVariant="three-columns-all-equal-width"
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Learn More", href: "#" }]}
buttonAnimation="slide-up"
/>
</div>
{/* Contact CTA Section */}
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Learn More"
tagIcon={Users}
tag="Get In Touch"
tagIcon={Phone}
tagAnimation="slide-up"
title="Ready to Join Our Community?"
description="Become part of a vibrant academic community dedicated to excellence and personal growth. Contact us to schedule a campus visit or learn more about our programs."
title="Want to Learn More About Us?"
description="Have questions about our college, programs, or campus facilities? Reach out to our team. We're here to help you on your educational journey."
buttons={[
{ text: "Book Campus Visit", href: "#" },
{ text: "Apply Now", href: "/admissions" },
{ text: "Call Now: 07263 256566", href: "tel:+917263256566" },
{ text: "Book a Campus Visit", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBase
logoText="College of Management"
copyrightText="© 2025 College of Management, Khamgaon. All rights reserved."
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About College", href: "/about" },
{ label: "Courses", href: "/courses" },
@@ -152,8 +124,7 @@ export default function AboutPage() {
],
},
{
title: "Academic",
items: [
title: "Academic", items: [
{ label: "Facilities", href: "/facilities" },
{ label: "NSS Programs", href: "#" },
{ label: "Competitive Exam Forum", href: "#" },
@@ -161,8 +132,7 @@ export default function AboutPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Waman Nagar, Khamgaon, Maharashtra", href: "#" },
{ label: "Phone: 07263 256566", href: "tel:+917263256566" },
{ label: "Privacy Policy", href: "#" },
@@ -174,4 +144,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,13 +1,11 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { Award, HelpCircle, Phone } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Award, Phone } from "lucide-react";
export default function AdmissionsPage() {
return (
@@ -17,12 +15,13 @@ export default function AdmissionsPage() {
borderRadius="rounded"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -37,130 +36,71 @@ export default function AdmissionsPage() {
/>
</div>
<div id="admission-intro" data-section="admission-intro">
<ContactCTA
tag="Start Your Journey"
{/* Admissions Hero Section */}
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="Begin Your Academic Journey"
description="Apply now to join College of Management. Comprehensive programs with world-class facilities and faculty support."
tag="Admissions Open"
tagIcon={Award}
tagAnimation="slide-up"
title="Begin Your Educational Journey Today"
description="Our simplified admission process ensures qualified candidates can easily apply for their desired programs. Complete your application in just a few steps."
background={{ variant: "plain" }}
buttons={[
{ text: "Apply Online Now", href: "#" },
{ text: "Call Us: 07263 256566", href: "tel:+917263256566" },
{ text: "Apply Online", href: "#" },
{ text: "Download Application Form", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
useInvertedBackground={false}
/>
</div>
<div id="admission-process" data-section="admission-process">
<MetricCardTen
title="Admission Process Steps"
description="Follow these simple steps to complete your admission process and secure your seat"
tag="How to Apply"
tagIcon={Award}
tagAnimation="slide-up"
metrics={[
carouselItems={[
{
id: "1",
title: "Fill Application Form",
subtitle: "Complete the online application with your basic details and program preference",
category: "Step 1",
value: "Online",
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=1", imageAlt: "college campus"
},
{
id: "2",
title: "Document Verification",
subtitle: "Submit your academic certificates, identification, and eligibility documents",
category: "Step 2",
value: "Required",
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=1", imageAlt: "students learning"
},
{
id: "3",
title: "Entrance Test (if applicable)",
subtitle: "Appear for the entrance examination for programs requiring merit-based selection",
category: "Step 3",
value: "Conditional",
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=1", imageAlt: "library"
},
{
id: "4",
title: "Admission Confirmation",
subtitle: "Receive your admission confirmation and complete the fee payment process",
category: "Step 4",
value: "Final",
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=1", imageAlt: "computer lab"
},
{
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=1", imageAlt: "student group"
},
{
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=1", imageAlt: "sports"
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Admission FAQs"
description="Find answers to common questions about eligibility, application, and admission procedures"
tag="Help & Support"
tagIcon={HelpCircle}
tagAnimation="slide-up"
faqs={[
{
id: "1",
title: "What are the eligibility criteria for admission?",
content: "For undergraduate programs (BA, BSc, BCom, BBA, BCA): 12th pass from any recognized board. For postgraduate programs (MSc): Relevant bachelor's degree with minimum 50% marks. Please check the prospectus for specific eligibility requirements for each program.",
},
{
id: "2",
title: "What is the admission process?",
content: "The admission process includes: 1) Online application submission on our portal, 2) Merit-based selection or entrance test (if applicable), 3) Document verification at the college, 4) Fee payment and confirmation. The complete timeline is available in our prospectus.",
},
{
id: "3",
title: "Are scholarships available?",
content: "Yes, we offer merit-based scholarships for students with excellent academic records and need-based financial assistance. For detailed information about scholarship schemes and eligibility criteria, please contact the admissions office at 07263 256566 or visit the college.",
},
{
id: "4",
title: "When is the admission deadline?",
content: "Admission deadlines vary by program. Generally, we accept applications throughout the academic year with priority given to early applicants. For specific deadlines, please check our website or contact the admissions office.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/thoughtful-people-talking-while-using-laptop-library_74855-1657.jpg?_wi=4"
imageAlt="Student guidance and support"
mediaAnimation="slide-up"
mediaPosition="left"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
autoPlay={true}
autoPlayInterval={4000}
/>
</div>
{/* Contact CTA Section */}
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Need More Information"
tag="Need Help?"
tagIcon={Phone}
tagAnimation="slide-up"
title="Contact Our Admissions Team"
description="Have questions about admission? Our friendly admissions team is ready to help you with any queries about programs, eligibility, and the application process."
title="Admissions Inquiry"
description="Have questions about the application process, eligibility, or program details? Contact our admissions office."
buttons={[
{ text: "Call Now: 07263 256566", href: "tel:+917263256566" },
{ text: "Email: admissions@college.edu", href: "mailto:admissions@college.edu" },
{ text: "Call: 07263 256566", href: "tel:+917263256566" },
{ text: "Email Us", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBase
logoText="College of Management"
copyrightText="© 2025 College of Management, Khamgaon. All rights reserved."
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About College", href: "/about" },
{ label: "Courses", href: "/courses" },
@@ -168,8 +108,7 @@ export default function AdmissionsPage() {
],
},
{
title: "Academic",
items: [
title: "Academic", items: [
{ label: "Facilities", href: "/facilities" },
{ label: "NSS Programs", href: "#" },
{ label: "Competitive Exam Forum", href: "#" },
@@ -177,8 +116,7 @@ export default function AdmissionsPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Waman Nagar, Khamgaon, Maharashtra", href: "#" },
{ label: "Phone: 07263 256566", href: "tel:+917263256566" },
{ label: "Privacy Policy", href: "#" },
@@ -190,4 +128,4 @@ export default function AdmissionsPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,13 +1,10 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { Phone, Mail, MapPin } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Phone } from "lucide-react";
export default function ContactPage() {
return (
@@ -17,12 +14,13 @@ export default function ContactPage() {
borderRadius="rounded"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -37,115 +35,32 @@ export default function ContactPage() {
/>
</div>
<div id="contact-intro" data-section="contact-intro">
{/* Contact CTA Section */}
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Get in Touch"
tag="Get In Touch"
tagIcon={Phone}
tagAnimation="slide-up"
title="Contact College of Management"
description="Have questions about our programs, admissions, or facilities? Our team is here to help. Reach out to us through any of our contact channels."
description="Have any questions? We would love to hear from you. Reach out to us for admissions, inquiries, or any other information."
buttons={[
{ text: "Call Now: 07263 256566", href: "tel:+917263256566" },
{ text: "Email: admissions@college.edu", href: "mailto:admissions@college.edu" },
{ text: "Call: 07263 256566", href: "tel:+917263256566" },
{ text: "Visit Campus", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
useInvertedBackground={false}
/>
</div>
<div id="contact-info" data-section="contact-info">
<MetricCardTen
title="Contact Information"
description="Multiple ways to reach us for admissions queries, campus visits, or general information"
tag="Get Connected"
tagIcon={Phone}
tagAnimation="slide-up"
metrics={[
{
id: "1",
title: "Phone",
subtitle: "Direct line to our admissions office",
category: "Call Us",
value: "07263 256566",
buttons: [{ text: "Call", href: "tel:+917263256566" }],
},
{
id: "2",
title: "Email",
subtitle: "Send us your inquiry or application",
category: "Email",
value: "admissions@college.edu",
buttons: [{ text: "Email", href: "mailto:admissions@college.edu" }],
},
{
id: "3",
title: "Location",
subtitle: "Waman Nagar, Khamgaon, Maharashtra 444303",
category: "Address",
value: "Campus",
},
{
id: "4",
title: "Office Hours",
subtitle: "Monday to Friday: 9:00 AM to 5:00 PM, Saturday: 10:00 AM to 2:00 PM",
category: "Timing",
value: "Available",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact-faq" data-section="contact-faq">
<FaqSplitMedia
title="Common Inquiries"
description="Answers to frequent questions about contacting us and other general matters"
tag="Quick Answers"
tagIcon={Mail}
tagAnimation="slide-up"
faqs={[
{
id: "1",
title: "What are the best times to call the admissions office?",
content: "The admissions office is open Monday to Friday from 9:00 AM to 5:00 PM and Saturday from 10:00 AM to 2:00 PM. We are closed on Sundays and public holidays. We recommend calling during morning hours for quick responses.",
},
{
id: "2",
title: "How can I schedule a campus visit?",
content: "To schedule a campus visit, please call our admissions office at 07263 256566 or send an email to admissions@college.edu with your preferred dates and time. Our team will confirm your visit and provide directions.",
},
{
id: "3",
title: "Can I apply online for admission?",
content: "Yes, we have an online admission portal where you can submit your application. You can also visit our campus or call the admissions office for guidance on the online application process and document requirements.",
},
{
id: "4",
title: "How long does it take to receive admission confirmation?",
content: "Typically, admission confirmation is provided within 7-10 business days after all documents are verified and fees are submitted. For time-sensitive applications, please contact the admissions office for expedited processing.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=7"
imageAlt="College campus"
mediaAnimation="slide-up"
mediaPosition="right"
faqsAnimation="slide-up"
textboxLayout="default"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBase
logoText="College of Management"
copyrightText="© 2025 College of Management, Khamgaon. All rights reserved."
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About College", href: "/about" },
{ label: "Courses", href: "/courses" },
@@ -153,8 +68,7 @@ export default function ContactPage() {
],
},
{
title: "Academic",
items: [
title: "Academic", items: [
{ label: "Facilities", href: "/facilities" },
{ label: "NSS Programs", href: "#" },
{ label: "Competitive Exam Forum", href: "#" },
@@ -162,8 +76,7 @@ export default function ContactPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Waman Nagar, Khamgaon, Maharashtra", href: "#" },
{ label: "Phone: 07263 256566", href: "tel:+917263256566" },
{ label: "Privacy Policy", href: "#" },
@@ -175,4 +88,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,13 +1,11 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { BookOpen, Award } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { BookOpen, Phone } from "lucide-react";
export default function CoursesPage() {
return (
@@ -17,12 +15,13 @@ export default function CoursesPage() {
borderRadius="rounded"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -37,91 +36,34 @@ export default function CoursesPage() {
/>
</div>
<div id="courses-overview" data-section="courses-overview">
{/* Courses Section */}
<div id="courses" data-section="courses">
<ProductCardOne
title="Our Academic Programs"
description="Comprehensive undergraduate and postgraduate programs designed to build professional skills and competencies aligned with industry needs"
tag="7 Courses Available"
description="Choose from our comprehensive range of undergraduate and postgraduate programs designed to meet industry standards and prepare you for success."
tag="7 Programs Available"
tagIcon={BookOpen}
tagAnimation="slide-up"
buttons={[{ text: "Apply for a Program", href: "/admissions" }]}
buttons={[{ text: "Apply Now", href: "/admissions" }]}
buttonAnimation="slide-up"
products={[
{
id: "1",
name: "Bachelor of Arts",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=5",
imageAlt: "Bachelor of Arts program",
id: "1", name: "Bachelor of Arts (BA)", price: "Undergraduate", imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=3", imageAlt: "BA program"
},
{
id: "2",
name: "Bachelor of Science",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=6",
imageAlt: "Bachelor of Science program",
id: "2", name: "Bachelor of Science (BSc)", price: "Undergraduate", imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=2", imageAlt: "BSc program"
},
{
id: "3",
name: "Bachelor of Commerce",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=5",
imageAlt: "Bachelor of Commerce program",
id: "3", name: "Bachelor of Commerce (BCom)", price: "Undergraduate", imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=3", imageAlt: "BCom program"
},
{
id: "4",
name: "BBA - Business Administration",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=4",
imageAlt: "BBA program",
id: "4", name: "BBA - Business Administration", price: "Undergraduate", imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=2", imageAlt: "BBA program"
},
{
id: "5",
name: "BCA - Computer Applications",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=6",
imageAlt: "BCA program",
id: "5", name: "BCA - Computer Applications", price: "Undergraduate", imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=2", imageAlt: "BCA program"
},
{
id: "6",
name: "MSc Computer Science",
price: "PG Program",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=7",
imageAlt: "MSc Computer Science program",
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="course-benefits" data-section="course-benefits">
<FeatureCardOne
title="Why Choose Our Programs"
description="Each program is carefully designed to provide academic excellence combined with practical skills and industry exposure"
tag="Program Highlights"
tagIcon={Award}
tagAnimation="slide-up"
features={[
{
title: "SGBAU Affiliation",
description: "All our programs are affiliated with Sant Gadge Baba Amravati University, ensuring recognized degrees and quality standards",
imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=6",
imageAlt: "University affiliation",
},
{
title: "Industry Exposure",
description: "Internship opportunities, industry expert sessions, and guest lectures provide practical learning and career readiness",
imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=5",
imageAlt: "Industry exposure",
},
{
title: "Expert Faculty",
description: "Experienced and qualified faculty members with strong academic credentials and industry experience guide student learning",
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-people-talking-while-using-laptop-library_74855-1657.jpg?_wi=3",
imageAlt: "Faculty expertise",
id: "6", name: "MSc Computer Science", price: "Postgraduate", imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=3", imageAlt: "MSc program"
},
]}
gridVariant="three-columns-all-equal-width"
@@ -131,31 +73,32 @@ export default function CoursesPage() {
/>
</div>
{/* Contact CTA Section */}
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Ready to Enroll"
tagIcon={BookOpen}
tag="More Information"
tagIcon={Phone}
tagAnimation="slide-up"
title="Choose Your Path to Success"
description="Explore our programs and take the first step towards building a successful career. Our admissions team is ready to help you with program selection and application process."
title="Interested in Any Program?"
description="Get in touch with our admissions office for detailed information about course curriculum, eligibility, fee structure, and more."
buttons={[
{ text: "Download Prospectus", href: "#" },
{ text: "Apply Now", href: "/admissions" },
{ text: "Call: 07263 256566", href: "tel:+917263256566" },
{ text: "Request Prospectus", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBase
logoText="College of Management"
copyrightText="© 2025 College of Management, Khamgaon. All rights reserved."
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About College", href: "/about" },
{ label: "Courses", href: "/courses" },
@@ -163,8 +106,7 @@ export default function CoursesPage() {
],
},
{
title: "Academic",
items: [
title: "Academic", items: [
{ label: "Facilities", href: "/facilities" },
{ label: "NSS Programs", href: "#" },
{ label: "Competitive Exam Forum", href: "#" },
@@ -172,8 +114,7 @@ export default function CoursesPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Waman Nagar, Khamgaon, Maharashtra", href: "#" },
{ label: "Phone: 07263 256566", href: "tel:+917263256566" },
{ label: "Privacy Policy", href: "#" },
@@ -185,4 +126,4 @@ export default function CoursesPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,13 +1,11 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { Award, Star } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Star, Phone } from "lucide-react";
export default function FacilitiesPage() {
return (
@@ -17,12 +15,13 @@ export default function FacilitiesPage() {
borderRadius="rounded"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -37,126 +36,69 @@ export default function FacilitiesPage() {
/>
</div>
<div id="facilities-overview" data-section="facilities-overview">
{/* Facilities Section */}
<div id="facilities" data-section="facilities">
<FeatureCardOne
title="Campus Facilities"
description="Our state-of-the-art infrastructure is designed to support comprehensive student development and academic excellence"
tag="World-Class Amenities"
title="World-Class Facilities"
description="Explore our comprehensive infrastructure designed to provide students with an exceptional learning environment and all necessary resources for academic and personal development."
tag="Our Infrastructure"
tagIcon={Star}
tagAnimation="slide-up"
features={[
{
title: "Modern Classrooms",
description: "Well-equipped classrooms with multimedia facilities, interactive boards, and comfortable seating for optimal learning environment",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=7",
imageAlt: "Modern classroom",
title: "Modern Classrooms", description: "State-of-the-art classrooms equipped with smart boards, projectors, and high-speed internet connectivity for interactive learning.", imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=2", imageAlt: "classroom"
},
{
title: "Computer Labs",
description: "Advanced computer laboratories with latest hardware and software for practical coding, design, and technical skill development",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=8",
imageAlt: "Computer lab",
title: "Computer Labs", description: "Advanced computer laboratories with latest hardware and software, configured for programming, design, and IT courses.", imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=2", imageAlt: "computer lab"
},
{
title: "Science Laboratories",
description: "Well-equipped science labs for physics, chemistry, and biology with modern instruments and materials for practical experiments",
imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=6",
imageAlt: "Science lab",
title: "Well-Equipped Library", description: "Extensive collection of textbooks, journals, and digital resources with comfortable reading spaces and study areas.", imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=2", imageAlt: "library"
},
{
title: "Library & Reading Rooms",
description: "Comprehensive library with thousands of textbooks, journals, reference materials, and dedicated quiet reading rooms for research",
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-people-talking-while-using-laptop-library_74855-1657.jpg?_wi=5",
imageAlt: "Library",
title: "Science Laboratories", description: "Well-equipped science labs with modern instruments and safety equipment for practical demonstrations and experiments.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-still-life-hard-exams_23-2149314038.jpg?_wi=3", imageAlt: "science lab"
},
{
title: "Sports & Recreation",
description: "Cricket grounds, football field, badminton courts, table tennis, gymnasium, and indoor sports facilities for physical development",
imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=5",
imageAlt: "Sports facilities",
title: "Sports Facilities", description: "Cricket grounds, badminton courts, volleyball courts, gymnasium, and other sports facilities for overall physical development.", imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=2", imageAlt: "sports ground"
},
{
title: "Transportation Services",
description: "Reliable college bus transportation service covering various routes in Khamgaon for safe and convenient student commute",
imageSrc: "http://img.b2bpic.net/free-photo/pensive-african-american-woman-traveling-by-bus_637285-12106.jpg",
imageAlt: "College bus",
title: "Auditorium & Event Hall", description: "Large auditorium with modern audio-visual equipment for seminars, workshops, cultural events, and academic programs.", imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=2", imageAlt: "auditorium"
},
]}
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Schedule Campus Tour", href: "#" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="facilities-stats" data-section="facilities-stats">
<MetricCardTen
title="Facilities & Resources"
description="Key facilities and resources available to support student learning and development"
tag="Campus Resources"
tagIcon={Award}
tagAnimation="slide-up"
metrics={[
{
id: "1",
title: "Library Collection",
subtitle: "Comprehensive collection of textbooks, journals, and reference materials for academic support",
category: "Learning",
value: "5000+ Books",
},
{
id: "2",
title: "Computer Systems",
subtitle: "Latest computers and servers for practical training and academic work",
category: "Technology",
value: "200+ PCs",
},
{
id: "3",
title: "Sports Facilities",
subtitle: "Multiple sports grounds and indoor facilities for student sports and recreation",
category: "Sports",
value: "10+ Grounds",
},
{
id: "4",
title: "Auditorium Seating",
subtitle: "Large auditorium for seminars, cultural programs, and institutional events",
category: "Events",
value: "500+ Seats",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Contact CTA Section */}
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Experience Our Campus"
tagIcon={Star}
tag="Plan Your Visit"
tagIcon={Phone}
tagAnimation="slide-up"
title="Visit Our Campus"
description="Experience our world-class facilities firsthand. Schedule a campus tour to see our modern infrastructure and meet our faculty members."
description="Experience our facilities firsthand. Schedule a campus tour with our admissions team to see where your educational journey begins."
buttons={[
{ text: "Book Campus Tour", href: "#" },
{ text: "Admission Inquiry", href: "/admissions" },
{ text: "Call: 07263 256566", href: "tel:+917263256566" },
{ text: "Schedule Tour", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBase
logoText="College of Management"
copyrightText="© 2025 College of Management, Khamgaon. All rights reserved."
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About College", href: "/about" },
{ label: "Courses", href: "/courses" },
@@ -164,8 +106,7 @@ export default function FacilitiesPage() {
],
},
{
title: "Academic",
items: [
title: "Academic", items: [
{ label: "Facilities", href: "/facilities" },
{ label: "NSS Programs", href: "#" },
{ label: "Competitive Exam Forum", href: "#" },
@@ -173,8 +114,7 @@ export default function FacilitiesPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Waman Nagar, Khamgaon, Maharashtra", href: "#" },
{ label: "Phone: 07263 256566", href: "tel:+917263256566" },
{ label: "Privacy Policy", href: "#" },
@@ -186,4 +126,4 @@ export default function FacilitiesPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -6,60 +6,44 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "College of Management, Khamgaon | SGBAU Affiliated | Best College",
description: "College of Management Khamgaon - SGBAU affiliated institution offering BCA, BBA, BA, BSc, BCom programs. ISO certified with modern facilities. Admission open. Call 07263 256566.",
keywords: "college in Khamgaon, BCA college, BBA college, best college Khamgaon, SGBAU affiliated, undergraduate college, Buldhana district education",
metadataBase: new URL("https://collegeofmanagementkhamgaon.edu.in"),
title: "College of Management, Khamgaon | SGBAU Affiliated | Best College", description: "College of Management Khamgaon - SGBAU affiliated institution offering BCA, BBA, BA, BSc, BCom programs. ISO certified with modern facilities. Admission open. Call 07263 256566.", keywords: "college in Khamgaon, BCA college, BBA college, best college Khamgaon, SGBAU affiliated, undergraduate college, Buldhana district education", metadataBase: new URL("https://collegeofmanagementkhamgaon.edu.in"),
alternates: {
canonical: "https://collegeofmanagementkhamgaon.edu.in",
canonical: "https://collegeofmanagementkhamgaon.edu.in"
},
openGraph: {
title: "College of Management, Khamgaon | Quality Education Since 2007",
description: "Discover quality higher education at College of Management Khamgaon. Accredited programs, modern campus, and placement support.",
url: "https://collegeofmanagementkhamgaon.edu.in",
siteName: "College of Management Khamgaon",
type: "website",
images: [
title: "College of Management, Khamgaon | Quality Education Since 2007", description: "Discover quality higher education at College of Management Khamgaon. Accredited programs, modern campus, and placement support.", url: "https://collegeofmanagementkhamgaon.edu.in", siteName: "College of Management Khamgaon", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg",
alt: "College of Management Khamgaon Campus",
},
],
url: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg", alt: "College of Management Khamgaon Campus"
}
]
},
twitter: {
card: "summary_large_image",
title: "College of Management, Khamgaon",
description: "Quality education with modern infrastructure. Admissions open now.",
images: ["http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg"],
card: "summary_large_image", title: "College of Management, Khamgaon", description: "Quality education with modern infrastructure. Admissions open now.", images: ["http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg"]
},
robots: {
index: true,
follow: true,
},
follow: true
}
};
export default function RootLayout({
children,
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${halant.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
@@ -1433,4 +1417,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,17 +1,25 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import { Award, Star, BookOpen, TrendingUp, MessageSquare, HelpCircle, Phone } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import HeroSplitKPI from "@/components/sections/hero/HeroSplitKPI";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import TeamCardSix from "@/components/sections/team/TeamCardSix";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactFAQ from "@/components/sections/contact/ContactFAQ";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import LegalSection from "@/components/legal/LegalSection";
import Link from "next/link";
import { Award, Star, BookOpen, TrendingUp, MessageSquare, Phone, CheckCircle2 } from "lucide-react";
export default function HomePage() {
return (
@@ -21,12 +29,13 @@ export default function HomePage() {
borderRadius="rounded"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -41,61 +50,38 @@ export default function HomePage() {
/>
</div>
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
<HeroSplitKPI
title="Shape Your Future with Quality Education"
description="Affiliated to Sant Gadge Baba Amravati University | Industry-Focused Courses | Student-Centric Learning | ISO Certified Excellence"
tag="Est. 2007 | SGBAU Affiliated"
tagIcon={Award}
tagAnimation="slide-up"
background={{ variant: "noise" }}
kpis={[
{ label: "Students", value: "1500+" },
{ label: "Programs", value: "7" },
{ label: "Years", value: "15+" },
]}
buttons={[
{ text: "Apply for Admission", href: "/admissions" },
{ text: "Start Your Journey Today", href: "/admissions" },
{ text: "Download Prospectus", href: "#" },
]}
buttonAnimation="slide-up"
carouselItems={[
{
id: "1",
imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=1",
imageAlt: "college campus education institution modern building academic facility",
},
{
id: "2",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=1",
imageAlt: "classroom modern education learning environment lecture hall",
},
{
id: "3",
imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=1",
imageAlt: "library students reading study room books",
},
{
id: "4",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=1",
imageAlt: "computer lab technology education IT facility computers",
},
{
id: "5",
imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=1",
imageAlt: "students group college students young professionals education",
},
{
id: "6",
imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=1",
imageAlt: "sports ground cricket field gymnasium student activities",
},
]}
autoPlay={true}
autoPlayInterval={4000}
imageSrc="http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg"
imageAlt="college campus education institution modern building academic facility"
/>
</div>
{/* About Section */}
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Why Choose" },
{ type: "text", content: "College of Management, Khamgaon" },
<SplitAbout
title="Why Choose College of Management, Khamgaon"
description="We provide comprehensive educational excellence through modern infrastructure, experienced faculty, and student-centric programs designed to shape future leaders."
bulletPoints={[
{ title: "SGBAU Affiliation", description: "Recognized affiliation ensuring quality standards" },
{ title: "Modern Infrastructure", description: "State-of-the-art facilities and labs" },
{ title: "Student-Centric Learning", description: "Personalized guidance and mentoring" },
]}
buttons={[
{ text: "Learn More About Us", href: "/about" },
@@ -103,11 +89,16 @@ export default function HomePage() {
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
textboxLayout="default"
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg"
imageAlt="College campus and facilities"
/>
</div>
{/* Features Section */}
<div id="features" data-section="features">
<FeatureCardOne
<FeatureCardSix
title="Our Distinctive Advantages"
description="Discover what makes College of Management a premier institution for higher education in Khamgaon"
tag="Why We Stand Out"
@@ -115,43 +106,30 @@ export default function HomePage() {
tagAnimation="slide-up"
features={[
{
title: "SGBAU Affiliation",
description: "Recognized affiliation with Sant Gadge Baba Amravati University ensuring quality education standards and recognized degrees",
imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=2",
imageAlt: "college campus",
id: 1,
title: "SGBAU Affiliation", description: "Recognized affiliation with Sant Gadge Baba Amravati University ensuring quality education standards and recognized degrees", imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=2", imageAlt: "college campus"
},
{
title: "Modern Infrastructure",
description: "State-of-the-art classrooms, computer labs, science laboratories, and well-equipped library with thousands of textbooks and journals",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=2",
imageAlt: "modern classroom",
id: 2,
title: "Modern Infrastructure", description: "State-of-the-art classrooms, computer labs, science laboratories, and well-equipped library with thousands of textbooks and journals", imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=2", imageAlt: "modern classroom"
},
{
title: "Student-Centric Learning",
description: "Personalized academic guidance, counseling facilities, and mentoring programs focused on individual student development",
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-people-talking-while-using-laptop-library_74855-1657.jpg?_wi=1",
imageAlt: "student counseling",
id: 3,
title: "Student-Centric Learning", description: "Personalized academic guidance, counseling facilities, and mentoring programs focused on individual student development", imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-people-talking-while-using-laptop-library_74855-1657.jpg?_wi=1", imageAlt: "student counseling"
},
{
title: "Competitive Exam Support",
description: "Dedicated forum for UPSC, MPSC, and SSC preparation with study materials, newspapers, and dedicated reading rooms",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-still-life-hard-exams_23-2149314038.jpg",
imageAlt: "exam preparation",
id: 4,
title: "Competitive Exam Support", description: "Dedicated forum for UPSC, MPSC, and SSC preparation with study materials, newspapers, and dedicated reading rooms", imageSrc: "http://img.b2bpic.net/free-photo/close-up-still-life-hard-exams_23-2149314038.jpg?_wi=1", imageAlt: "exam preparation"
},
{
title: "Diverse Facilities",
description: "Cricket grounds, sports facilities, auditorium, gymnasium, canteen, and reliable college bus transportation",
imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=2",
imageAlt: "sports facilities",
id: 5,
title: "Diverse Facilities", description: "Cricket grounds, sports facilities, auditorium, gymnasium, canteen, and reliable college bus transportation", imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=2", imageAlt: "sports ground"
},
{
title: "Cultural & Social Development",
description: "NSS programs, cultural activities including drama, music, dance, and regular national integration initiatives",
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-diverse-team-volunteers-distribute-free-food-those-need-including-homeless-individuals-refugees-their-compassionate-service-provides-vital-support-underprivileged_482257-68552.jpg",
imageAlt: "NSS activity",
id: 6,
title: "Cultural & Social Development", description: "NSS programs, cultural activities including drama, music, dance, and regular national integration initiatives", imageSrc: "http://img.b2bpic.net/free-photo/mother-daughter-preparing-plant-tree-woods_482257-91250.jpg?_wi=1", imageAlt: "NSS activity"
},
]}
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -160,8 +138,9 @@ export default function HomePage() {
/>
</div>
{/* Courses Section */}
<div id="courses" data-section="courses">
<ProductCardOne
<ProductCardFour
title="Academic Programs"
description="Comprehensive undergraduate and postgraduate programs designed to build professional skills and competencies"
tag="7 Courses Available"
@@ -171,100 +150,155 @@ export default function HomePage() {
buttonAnimation="slide-up"
products={[
{
id: "1",
name: "Bachelor of Arts",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=3",
imageAlt: "Bachelor of Arts program",
id: "1", name: "Bachelor of Arts", price: "UG Program", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=3", imageAlt: "BA program"
},
{
id: "2",
name: "Bachelor of Science",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=2",
imageAlt: "Bachelor of Science program",
id: "2", name: "Bachelor of Science", price: "UG Program", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=2", imageAlt: "BSc program"
},
{
id: "3",
name: "Bachelor of Commerce",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=3",
imageAlt: "Bachelor of Commerce program",
id: "3", name: "Bachelor of Commerce", price: "UG Program", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg?_wi=3", imageAlt: "BCom program"
},
{
id: "4",
name: "BBA - Business Administration",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=2",
imageAlt: "BBA program",
},
{
id: "5",
name: "BCA - Computer Applications",
price: "UG Program",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=2",
imageAlt: "BCA program",
},
{
id: "6",
name: "MSc Computer Science",
price: "PG Program",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=3",
imageAlt: "MSc Computer Science program",
id: "4", name: "BBA - Business Administration", price: "UG Program", variant: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=2", imageAlt: "BBA program"
},
]}
gridVariant="three-columns-all-equal-width"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Pricing Section - Featured Plans */}
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Choose Your Learning Path"
description="Select from our diverse range of programs tailored to meet your educational and career goals"
tag="Program Options"
tagIcon={CheckCircle2}
tagAnimation="slide-up"
plans={[
{
id: "1", tag: "Most Popular", tagIcon: Star,
price: "Comprehensive", period: "Bachelor of Business Administration", description: "Industry-focused business education", button: { text: "Learn More", href: "/courses" },
featuresTitle: "What's Included", features: [
"Industry-focused curriculum", "Placement assistance", "Internship opportunities", "Modern infrastructure"
]
},
{
id: "2", tag: "Academic", price: "Traditional", period: "Bachelor of Arts / Science / Commerce", description: "Classical academic excellence", button: { text: "Learn More", href: "/courses" },
featuresTitle: "What's Included", features: [
"Core subject specialization", "Research opportunities", "UPSC/MPSC support", "Competitive exam preparation"
]
},
{
id: "3", tag: "Tech-Focused", price: "Advanced", period: "BCA - Computer Applications", description: "Modern technology education", button: { text: "Learn More", href: "/courses" },
featuresTitle: "What's Included", features: [
"Latest technology stack", "Coding bootcamps", "Industry certifications", "IT placement program"
]
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Explore All Programs", href: "/courses" }]}
buttonAnimation="slide-up"
/>
</div>
{/* Pricing Section - Additional Plans */}
<div id="pricing-additional" data-section="pricing-additional">
<PricingCardThree
title="Postgraduate Excellence"
description="Advanced learning opportunities for career advancement and specialization"
tag="PG Programs"
tagIcon={TrendingUp}
tagAnimation="slide-up"
plans={[
{
id: "1", badge: "Research-Oriented", price: "MSc", name: "Master of Science in Computer Science", buttons: [{ text: "Learn More", href: "/courses" }],
features: [
"Research-focused curriculum", "Advanced laboratories", "Faculty mentorship", "Publication opportunities"
]
},
{
id: "2", badge: "Professional", price: "MBA", name: "Master of Business Administration", buttons: [{ text: "Learn More", href: "/courses" }],
features: [
"Industry experts as mentors", "Case study approach", "Networking opportunities", "Executive placement"
]
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "View PG Programs", href: "/courses" }]}
buttonAnimation="slide-up"
/>
</div>
{/* Metrics/Achievements Section */}
<div id="metrics" data-section="metrics">
<MetricCardTen
<MetricCardTwo
title="College Achievements"
description="Milestones and statistics that showcase our commitment to educational excellence"
description="Key milestones and statistics showcasing our commitment to educational excellence"
tag="By The Numbers"
tagIcon={TrendingUp}
tagAnimation="slide-up"
metrics={[
{
id: "1",
title: "1500+ Students",
subtitle: "Active student enrollment across all programs",
category: "Student Base",
value: "Growing",
id: "1", value: "1500+", description: "Active Students"
},
{
id: "2",
title: "7 Academic Programs",
subtitle: "UG & PG courses aligned with industry needs",
category: "Academics",
value: "Available",
id: "2", value: "7", description: "Academic Programs"
},
{
id: "3",
title: "15+ Years",
subtitle: "Years of educational excellence since 2007",
category: "Experience",
value: "Established",
id: "3", value: "15+", description: "Years of Excellence"
},
{
id: "4",
title: "100+ Campus Events",
subtitle: "Annual cultural, sports, and academic events",
category: "Activities",
value: "Annual",
id: "4", value: "100+", description: "Annual Events"
},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Team Section */}
<div id="team" data-section="team">
<TeamCardSix
title="Meet Our Faculty"
description="Experienced educators and mentors dedicated to student success"
tag="Our Team"
tagIcon={Award}
tagAnimation="slide-up"
members={[
{
id: "1", name: "Dr. Rajesh Kumar", role: "Principal & Academic Director", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg"
},
{
id: "2", name: "Prof. Anjali Sharma", role: "Head - Commerce Department", imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135489.jpg"
},
{
id: "3", name: "Prof. Vikas Deshmukh", role: "Head - Science Department", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg"
},
{
id: "4", name: "Dr. Priya Menon", role: "Head - IT & BCA Program", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg"
},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Meet Full Team", href: "/about" }]}
buttonAnimation="slide-up"
/>
</div>
{/* Testimonials Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
<TestimonialCardTwo
title="Student Success Stories"
description="Hear from our students about their transformative learning experience at College of Management"
tag="Student Testimonials"
@@ -272,108 +306,163 @@ export default function HomePage() {
tagAnimation="slide-up"
testimonials={[
{
id: "1",
name: "Priya Sharma, BBA Graduate",
date: "Date: February 2024",
title: "Life-Changing Learning Experience",
quote: "The college provided excellent academic rigor combined with practical industry exposure. Faculty members were highly supportive and guidance from the career center helped me secure a placement in a leading multinational company.",
tag: "BBA Program",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135489.jpg",
avatarAlt: "Priya Sharma",
imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=3",
imageAlt: "BBA students",
id: "1", name: "Priya Sharma", role: "BBA Graduate", testimonial: "The college provided excellent academic rigor combined with practical industry exposure. Faculty members were highly supportive and career guidance helped me secure a placement in a leading multinational company.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135489.jpg", imageAlt: "Priya Sharma"
},
{
id: "2",
name: "Rahul Patil, BCA Graduate",
date: "Date: January 2024",
title: "Technical Excellence Achieved",
quote: "The computer science infrastructure and technical curriculum prepared me excellently for software development roles. The competitive exam forum also helped me clear GATE with distinction.",
tag: "BCA Program",
avatarSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg",
avatarAlt: "Rahul Patil",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=4",
imageAlt: "Computer lab",
id: "2", name: "Rahul Patil", role: "BCA Graduate", testimonial: "The computer science infrastructure and technical curriculum prepared me excellently for software development roles. The competitive exam forum also helped me clear GATE with distinction.", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "Rahul Patil"
},
{
id: "3",
name: "Anjali Deshmukh, BA Graduate",
date: "Date: December 2023",
title: "Holistic Development",
quote: "Beyond academics, the college focused on overall personality development. NSS activities, cultural programs, and sports facilities helped me become a well-rounded professional ready for competitive exams.",
tag: "BA Program",
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg",
avatarAlt: "Anjali Deshmukh",
imageSrc: "http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg?_wi=3",
imageAlt: "NSS activity",
id: "3", name: "Anjali Deshmukh", role: "BA Graduate", testimonial: "Beyond academics, the college focused on overall personality development. NSS activities, cultural programs, and sports helped me become a well-rounded professional.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg", imageAlt: "Anjali Deshmukh"
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Read More Stories", href: "#" }]}
buttonAnimation="slide-up"
/>
</div>
{/* FAQ Section - Split Media */}
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Frequently Asked Questions"
description="Find answers to common questions about our programs, admissions, and campus facilities"
tag="Need Help?"
tagIcon={Phone}
tagAnimation="slide-up"
faqs={[
{
id: "1", title: "What programs are offered?", content: "We offer 7 comprehensive programs: Bachelor of Arts, Bachelor of Science, Bachelor of Commerce, BBA, BCA, and MSc Computer Science. All programs are SGBAU affiliated and designed with industry requirements in mind."
},
{
id: "4",
name: "Vikas Kumar, MSc Computer Science",
date: "Date: November 2023",
title: "Research-Oriented Education",
quote: "The postgraduate program provided excellent research opportunities and mentoring. The faculty expertise and research resources enabled me to pursue higher studies abroad.",
tag: "MSc Program",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-pretty-girl-plaid-shirt-posing_114579-70643.jpg",
avatarAlt: "Vikas Kumar",
imageSrc: "http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg?_wi=5",
imageAlt: "Computer Science program",
id: "2", title: "What are the admission requirements?", content: "Admission is based on 12th standard marks and entrance examination scores where applicable. Visit our admissions page or contact us at 07263 256566 for specific eligibility criteria for each program."
},
{
id: "5",
name: "Sneha Gupta, BCom Graduate",
date: "Date: October 2023",
title: "Industry-Ready Curriculum",
quote: "The commerce program aligned perfectly with industry requirements. Internship opportunities and industry expert sessions gave me practical insights that helped me excel in my job.",
tag: "BCom Program",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135489.jpg",
avatarAlt: "Sneha Gupta",
imageSrc: "http://img.b2bpic.net/free-photo/students-library-college_23-2147678906.jpg?_wi=4",
imageAlt: "Commerce program",
id: "3", title: "What campus facilities are available?", content: "Our campus features modern classrooms, computer labs, science laboratories, sports facilities, gymnasium, auditorium, library with thousands of books, and reliable transportation."
},
{
id: "6",
name: "Arjun Singh, BSc Graduate",
date: "Date: September 2023",
title: "Science Education at Its Best",
quote: "Modern laboratory facilities and experienced faculty made science education engaging and practical. I'm now pursuing research in a prestigious institution.",
tag: "BSc Program",
avatarSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg",
avatarAlt: "Arjun Singh",
imageSrc: "http://img.b2bpic.net/free-photo/people-reading-books-room_23-2147679257.jpg?_wi=3",
imageAlt: "Science program",
id: "4", title: "Is placement assistance provided?", content: "Yes, we have a dedicated placement cell that provides career counseling, interview training, and placement assistance for all graduates."
},
]}
imageSrc="http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg"
imageAlt="College students on campus"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
mediaPosition="right"
buttons={[{ text: "Contact Admissions", href: "/admissions" }]}
buttonAnimation="slide-up"
/>
</div>
{/* Social Proof Section */}
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Students & Families"
description="Join thousands of students who have experienced quality education at College of Management"
tag="Community Trust"
tagAnimation="slide-up"
names={[
"SGBAU University", "ISO Certified", "500+ Placements", "Industry Partners", "Leading Employers", "Academic Excellence"
]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
showCard={true}
/>
</div>
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Get Started Today"
{/* FAQ Section - Split Text */}
<div id="faq-additional" data-section="faq-additional">
<FaqSplitText
sideTitle="Campus Life FAQs"
sideDescription="Learn about student life, facilities, and activities at our college"
faqs={[
{
id: "1", title: "What extracurricular activities are available?", content: "We offer NSS programs, cultural activities including drama and music, sports competitions, tech clubs, and regular academic seminars."
},
{
id: "2", title: "Is hostel accommodation available?", content: "College bus transportation is provided to most areas. For students requiring accommodation, hostel facilities can be arranged with prior coordination."
},
{
id: "3", title: "What competitive exam support is offered?", content: "Dedicated forum for UPSC, MPSC, and SSC preparation with study materials, newspaper library, and dedicated reading rooms."
},
{
id: "4", title: "How is student mentoring conducted?", content: "Each student is assigned a faculty mentor for personalized guidance on academic progress, career planning, and personal development."
},
]}
faqsAnimation="slide-up"
textPosition="left"
useInvertedBackground={false}
buttons={[{ text: "Schedule Campus Tour", href: "#" }]}
buttonAnimation="slide-up"
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
tagIcon={Phone}
tagAnimation="slide-up"
title="Ready to Shape Your Future?"
description="Take the first step towards your educational journey. Contact our admissions team to learn more about programs, campus facilities, and admission process."
buttons={[
{ text: "Call Now: 07263 256566", href: "tel:+917263256566" },
{ text: "Apply for Admission", href: "/admissions" },
title="Have Questions?"
description="Our admissions team is ready to help you with any queries about programs, campus facilities, or the application process."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg"
imageAlt="College facilities and students"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe at any time."
onSubmit={(email) => console.log(email)}
/>
</div>
{/* Contact FAQ Section */}
<div id="contact-faq" data-section="contact-faq">
<ContactFAQ
title="Still Have Questions?"
description="Explore our comprehensive resources or reach out to our dedicated support team"
tag="Contact & Support"
tagIcon={MessageSquare}
tagAnimation="slide-up"
contactInfo={[
{
label: "Phone", value: "07263 256566", href: "tel:+917263256566"
},
{
label: "Address", value: "Waman Nagar, Khamgaon, Maharashtra", href: "#"
},
{
label: "Email", value: "info@collegeofmanagement.edu.in", href: "mailto:info@collegeofmanagement.edu.in"
},
]}
faqs={[
{
id: "1", title: "When does admission window open?", content: "Admissions typically open in June each year. Follow our website for specific dates and application procedures."
},
{
id: "2", title: "What is the fee structure?", content: "Fee varies by program. Contact admissions for detailed fee information and scholarship opportunities."
},
]}
buttons={[{ text: "Apply Now", href: "/admissions" }]}
buttonAnimation="slide-up"
background={{ variant: "noise" }}
useInvertedBackground={false}
/>
</div>
{/* Footer - Media Version */}
<div id="footer" data-section="footer">
<FooterBase
<FooterMedia
logoText="College of Management"
copyrightText="© 2025 College of Management, Khamgaon. All rights reserved."
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About College", href: "/about" },
{ label: "Courses", href: "/courses" },
@@ -381,8 +470,7 @@ export default function HomePage() {
],
},
{
title: "Academic",
items: [
title: "Academic", items: [
{ label: "Facilities", href: "/facilities" },
{ label: "NSS Programs", href: "#" },
{ label: "Competitive Exam Forum", href: "#" },
@@ -390,8 +478,7 @@ export default function HomePage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Waman Nagar, Khamgaon, Maharashtra", href: "#" },
{ label: "Phone: 07263 256566", href: "tel:+917263256566" },
{ label: "Privacy Policy", href: "#" },
@@ -399,8 +486,62 @@ export default function HomePage() {
],
},
]}
imageSrc="http://img.b2bpic.net/free-photo/volunteer-team-cleaning-city-grass-from-garbage_1262-21092.jpg"
imageAlt="College campus and community"
onPrivacyClick={() => console.log("Privacy clicked")}
/>
</div>
{/* Terms of Service */}
<div id="terms" data-section="terms">
<LegalSection
layout="section"
title="Terms of Service"
subtitle="Last updated: January 2025"
sections={[
{
heading: "1. Acceptance of Terms", content: [
{
type: "paragraph", text: "By accessing and using this website, you accept and agree to be bound by the terms and provision of this agreement."
}
]
},
{
heading: "2. Educational Services", content: [
{
type: "paragraph", text: "College of Management, Khamgaon provides educational services as described on this website. All programs are SGBAU affiliated."
},
{
type: "list", items: [
"Undergraduate programs (BA, BSc, BCom, BBA, BCA)", "Postgraduate programs (MSc Computer Science)", "Campus facilities and student services"
]
}
]
},
{
heading: "3. Admission Policy", content: [
{
type: "paragraph", text: "Admissions are based on merit and eligibility criteria. Applicants must meet academic requirements and complete the application process."
}
]
},
{
heading: "4. Privacy & Data Protection", content: [
{
type: "paragraph", text: "Your privacy is important to us. We collect and process personal information in accordance with applicable data protection laws."
}
]
},
{
heading: "5. Limitation of Liability", content: [
{
type: "paragraph", text: "College of Management shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of this website."
}
]
},
]}
/>
</div>
</ThemeProvider>
);
}
}