7 Commits

Author SHA1 Message Date
26b03b8f06 Merge version_3 into main
Merge version_3 into main
2026-03-04 07:59:41 +00:00
38ab293c69 Update src/app/page.tsx 2026-03-04 07:59:37 +00:00
1c99064284 Update src/app/layout.tsx 2026-03-04 07:59:36 +00:00
fb82de62c8 Merge version_2 into main
Merge version_2 into main
2026-03-04 07:44:29 +00:00
cf13512138 Update src/app/page.tsx 2026-03-04 07:44:24 +00:00
4f9d7b4eee Update src/app/layout.tsx 2026-03-04 07:44:24 +00:00
0f57aaacc2 Merge version_1 into main
Merge version_1 into main
2026-03-04 05:18:24 +00:00
2 changed files with 15 additions and 34 deletions

View File

@@ -1,46 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "InternMatch AI - Smart Internship Allocation Engine", description: "Enterprise SaaS dashboard for AI-powered smart internship allocation using NLP embeddings and fairness algorithms. Built for the PM Internship Scheme hackathon.", keywords: "internship allocation, AI matching, SaaS dashboard, NLP, fairness audit, hackathon", metadataBase: new URL("https://internmatch-ai.example.com"), title: "InternMatch AI", description: "Enterprise-grade AI-powered Smart Internship Allocation Engine"};
alternates: {
canonical: "https://internmatch-ai.example.com"
},
openGraph: {
title: "InternMatch AI", description: "Smart AI-based internship allocation engine leveraging NLP and global optimization", url: "https://internmatch-ai.example.com", siteName: "InternMatch AI", type: "website"
},
twitter: {
card: "summary_large_image", title: "InternMatch AI - Hackathon Build 2026", description: "Enterprise SaaS dashboard for intelligent internship allocation"
}
};
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 className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1408,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
title="InternMatch AI" title="InternMatch AI"
description="Enterprise-grade AI-powered Smart Internship Allocation Engine leveraging NLP embeddings, Hungarian algorithms, and fairness constraints for optimal candidate-role matching across the PM Internship Scheme." description="Match top candidates to ideal roles fairly and instantly using AI-powered intelligence."
buttons={[ buttons={[
{ text: "Enter Dashboard", href: "#dashboard" }, { text: "Enter Dashboard", href: "#dashboard" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
@@ -92,4 +92,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }