diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index aa5d81e..6979214 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -155,4 +155,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/admissions/page.tsx b/src/app/admissions/page.tsx
index 50f62fe..d97c40f 100644
--- a/src/app/admissions/page.tsx
+++ b/src/app/admissions/page.tsx
@@ -153,4 +153,4 @@ export default function AdmissionsPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/campus/page.tsx b/src/app/campus/page.tsx
index 444a3f2..a7595f8 100644
--- a/src/app/campus/page.tsx
+++ b/src/app/campus/page.tsx
@@ -131,4 +131,4 @@ export default function CampusPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/courses/page.tsx b/src/app/courses/page.tsx
index db92c7f..3cbec84 100644
--- a/src/app/courses/page.tsx
+++ b/src/app/courses/page.tsx
@@ -173,4 +173,4 @@ export default function CoursesPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e9115a1..a766d56 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,74 +1,16 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Nunito_Sans } 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"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "NRIIT - Top Engineering College in Vijayawada | Autonomous",
- description: "NRI Institute of Technology - Leading autonomous engineering college in Vijayawada offering BTech programs with 96% placement rate and industry partnerships.",
- keywords: "engineering college Vijayawada, autonomous college, BTech programs, placements, NRIIT",
- metadataBase: new URL("https://nriit.edu.in"),
- alternates: {
- canonical: "https://nriit.edu.in",
- },
- openGraph: {
- title: "NRIIT - Top Engineering College in Vijayawada",
- description: "Join NRI Institute of Technology for quality engineering education with 96% placement support and modern infrastructure.",
- url: "https://nriit.edu.in",
- siteName: "NRI Institute of Technology",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/hotel_1127-4042.jpg",
- alt: "NRIIT Campus",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "NRIIT - Engineering Excellence in Vijayawada",
- description: "Top-rated autonomous engineering college with industry partnerships and strong placements.",
- images: ["http://img.b2bpic.net/free-photo/hotel_1127-4042.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "NRIIT - Autonomous Engineering College in Vijayawada", description: "NRI Institute of Technology offers industry-focused engineering education with advanced labs and strong placement support."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-