diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index 6362ff6..5783310 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -72,7 +72,7 @@ export default function EventsPage() { title: "Cricket - Boys", description: "Fast-paced cricket tournament featuring team-based competition with proper grounds and professional umpiring.", tag: "Team Sport", - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cheering-home_329181-19072.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cheering-home_329181-19072.jpg?_wi=2", imageAlt: "boys cricket match action shot", buttons: [{ text: "Register", href: "register" }], }, diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index c3ee148..bb5fe8e 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -19,42 +19,42 @@ export default function GalleryPage() { id: "1", title: "Exciting Event Moments", category: "Sports", - imageSrc: "http://img.b2bpic.net/free-photo/man-taking-photo-young-people_23-2148134042.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-taking-photo-young-people_23-2148134042.jpg?_wi=3", imageAlt: "past sports event celebration photo", }, { id: "2", title: "Victory & Celebration", category: "Awards", - imageSrc: "http://img.b2bpic.net/free-photo/excited-african-male-winner-raising-his-fists-with-great-happiness-having-good-mood_273609-14093.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/excited-african-male-winner-raising-his-fists-with-great-happiness-having-good-mood_273609-14093.jpg?_wi=2", imageAlt: "sports event medal ceremony celebration", }, { id: "3", title: "Cultural Performance", category: "Culture", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-women-with-holi-colors-her-face-looking-camera_23-2148129330.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-women-with-holi-colors-her-face-looking-camera_23-2148129330.jpg?_wi=2", imageAlt: "college cultural event performance photo", }, { id: "4", title: "Community Spirit", category: "Crowd", - imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-standing-street-communicating_74855-5071.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-standing-street-communicating_74855-5071.jpg?_wi=3", imageAlt: "crowd participation event atmosphere", }, { id: "5", title: "Event Setup", category: "Venue", - imageSrc: "http://img.b2bpic.net/free-photo/wedding-banquet-service_624325-2033.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/wedding-banquet-service_624325-2033.jpg?_wi=2", imageAlt: "event setup decoration preparation", }, { id: "6", title: "Team Spirit", category: "Sports", - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cheering-home_329181-19072.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cheering-home_329181-19072.jpg?_wi=3", imageAlt: "boys cricket match action shot", }, ]; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..9d58e8e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,58 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Nunito_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "DMI Sports Day & College Day 2026 | Event Registration", + description: "Register for DMI Engineering College's Sports Day & College Day 2026 on March 15. Compete in sports or showcase your talent in cultural events.", + keywords: "DMI, sports day, college day, event registration, Kanyakumari, athletics, cultural events", + metadataBase: new URL("https://dmi-sports-day-2026.com"), + alternates: { + canonical: "https://dmi-sports-day-2026.com", + }, + openGraph: { + title: "DMI Sports Day & College Day 2026", + description: "Join us for an unforgettable celebration of athletics and culture on March 15, 2026.", + url: "https://dmi-sports-day-2026.com", + siteName: "DMI Sports Day 2026", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/supporters-watching-their-team-win-game-mobile-phone_53876-132073.jpg", + alt: "DMI Sports Day 2026", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "DMI Sports Day & College Day 2026", + description: "Register now for DMI's biggest event celebrating sports and culture", + images: ["http://img.b2bpic.net/free-photo/supporters-watching-their-team-win-game-mobile-phone_53876-132073.jpg"], + }, + robots: "index, follow", +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +61,9 @@ export default function RootLayout({ return ( - + {children}