import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "NRI Institute of Technology - B.Tech Engineering College Vijayawada", description: "Premier autonomous engineering college in Vijayawada offering B.Tech programs with 98% placement, modern infrastructure, and industry partnerships.", keywords: "engineering college Vijayawada, B.Tech college, autonomous college, best engineering college Andhra Pradesh, AI data science", metadataBase: new URL("https://nriinstitute.edu"), alternates: { canonical: "https://nriinstitute.edu", }, openGraph: { title: "NRI Institute of Technology - Build Your Future", description: "Top-ranked engineering college in Vijayawada with state-of-the-art infrastructure and industry partnerships.", url: "https://nriinstitute.edu", siteName: "NRI Institute of Technology", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/water-dwelling_1127-3260.jpg", alt: "NRI Institute Campus", }, ], }, twitter: { card: "summary_large_image", title: "NRI Institute of Technology - B.Tech College", description: "Premier engineering college in Vijayawada with 98% placement rate.", images: ["http://img.b2bpic.net/free-photo/water-dwelling_1127-3260.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}