6 Commits

Author SHA1 Message Date
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 { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
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"),
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"
}
};
title: "InternMatch AI", description: "Enterprise-grade AI-powered Smart Internship Allocation Engine"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
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={[
{ text: "Enter Dashboard", href: "#dashboard" },
{ text: "Learn More", href: "#about" }
@@ -92,4 +92,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}