diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index dd5bcc4..9c94a02 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,17 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-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"],
-});
+import "@/styles/globals.css";
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"),
- 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
- }
-};
+ title: "College of Management, Khamgaon", description: "Quality higher education with SGBAU affiliation, modern infrastructure, and student-centric learning"};
export default function RootLayout({
- children
-}: Readonly<{
+ children,
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 81a759d..1140e6b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,16 +2,24 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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 } from "lucide-react";
+import { Award, Star, BookOpen, TrendingUp, MessageSquare, Phone, CheckCircle2, Briefcase } from "lucide-react";
export default function HomePage() {
return (
@@ -44,49 +52,36 @@ export default function HomePage() {
{/* Hero Section */}
-
{/* About Section */}
-
{/* Features Section */}
+ {/* Pricing Section - Featured Plans */}
+
+
+ {/* Pricing Section - Additional Plans */}
+
+
{/* Metrics/Achievements Section */}
-
+ {/* Team Section */}
+
+
+
+
{/* Testimonials Section */}
-
+
+
+ {/* FAQ Section - Split Media */}
+
+
+
+
+ {/* Social Proof Section */}
+
+
- {/* Contact CTA Section */}
-
-
+
+
+
+ {/* Contact Section */}
+
+ console.log(email)}
+ />
+
+
+ {/* Contact FAQ Section */}
+
+
- {/* Footer */}
+ {/* Footer - Media Version */}
+
+ {/* Terms of Service */}
+
+
);
-}
\ No newline at end of file
+}