12 Commits

Author SHA1 Message Date
17a38b8d46 Update src/app/page.tsx 2026-03-05 11:01:31 +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
5af84a80f8 Merge version_5 into main
Merge version_5 into main
2026-03-05 07:23:43 +00:00
4c37a3ba1e Merge version_5 into main
Merge version_5 into main
2026-03-05 07:21:57 +00:00
c16032ab6c Merge version_5 into main
Merge version_5 into main
2026-03-05 07:13:32 +00:00
9471df7e74 Merge version_5 into main
Merge version_5 into main
2026-03-05 07:11:55 +00:00
f146edc16b Merge version_5 into main
Merge version_5 into main
2026-03-05 07:10:14 +00:00
e16e84d2df Merge version_5 into main
Merge version_5 into main
2026-03-05 07:08:18 +00:00
2 changed files with 13 additions and 49 deletions

View File

@@ -1,52 +1,17 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import "@/styles/globals.css";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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", description: "Quality higher education with SGBAU affiliation, modern infrastructure, and student-centric learning"};
alternates: {
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: [
{
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"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({ export default function RootLayout({
children children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body>{children}
<body className={`${halant.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1414,7 +1379,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroSplitKPI from "@/components/sections/hero/HeroSplitKPI"; import { HeroSplitKPI } from "@/components/sections/hero/HeroSplitKPI";
import SplitAbout from "@/components/sections/about/SplitAbout"; import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import ProductCardFour from "@/components/sections/product/ProductCardFour"; import ProductCardFour from "@/components/sections/product/ProductCardFour";
@@ -15,11 +15,11 @@ import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactSplit from "@/components/sections/contact/ContactSplit"; import ContactSplit from "@/components/sections/contact/ContactSplit";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactFAQ from "@/components/sections/contact/ContactFAQ"; import { ContactFAQ } from "@/components/sections/contact/ContactFAQ";
import FooterMedia from "@/components/sections/footer/FooterMedia"; import FooterMedia from "@/components/sections/footer/FooterMedia";
import LegalSection from "@/components/legal/LegalSection"; import LegalSection from "@/components/legal/LegalSection";
import Link from "next/link"; import Link from "next/link";
import { Award, Star, BookOpen, TrendingUp, MessageSquare, Phone, CheckCircle2 } from "lucide-react"; import { Award, Star, BookOpen, TrendingUp, MessageSquare, Phone, CheckCircle2, Briefcase } from "lucide-react";
export default function HomePage() { export default function HomePage() {
return ( return (
@@ -306,13 +306,13 @@ export default function HomePage() {
tagAnimation="slide-up" tagAnimation="slide-up"
testimonials={[ testimonials={[
{ {
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: "1", name: "Priya Sharma", role: "BBA Graduate, Placed at XYZ Corp", 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", icon: Briefcase
}, },
{ {
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: "2", name: "Rahul Patil", role: "BCA Graduate, GATE Score: 98 Percentile", 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", icon: Star
}, },
{ {
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" id: "3", name: "Anjali Deshmukh", role: "BA Graduate, UPSC Qualified", 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", icon: Award
}, },
]} ]}
animationType="slide-up" animationType="slide-up"