Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 17a38b8d46 | |||
| 7797fe13bb | |||
| 646c238e74 | |||
| eecf3c66c8 | |||
| 7241affd92 | |||
| c5d60464ed | |||
| 5af84a80f8 | |||
| 4c37a3ba1e | |||
| c16032ab6c | |||
| 9471df7e74 | |||
| f146edc16b | |||
| e16e84d2df |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user