Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 38ab293c69 | |||
| 1c99064284 | |||
| fb82de62c8 | |||
| cf13512138 | |||
| 4f9d7b4eee | |||
| 0f57aaacc2 |
@@ -1,45 +1,27 @@
|
|||||||
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={{
|
||||||
@@ -1408,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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" }
|
||||||
|
|||||||
Reference in New Issue
Block a user