5 Commits

Author SHA1 Message Date
12f1824e42 Update src/app/page.tsx 2026-03-05 22:52:01 +00:00
84d278734a Update src/app/layout.tsx 2026-03-05 22:52:01 +00:00
236255b9a1 Merge version_1 into main
Merge version_1 into main
2026-03-05 22:50:47 +00:00
3e8b8a19cc Merge version_1 into main
Merge version_1 into main
2026-03-05 22:50:02 +00:00
0f4ae2a29d Merge version_1 into main
Merge version_1 into main
2026-03-05 22:48:24 +00:00
2 changed files with 15 additions and 62 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "HighlightAI - AI Sports Highlight Reel Creator",
description: "Transform raw game clips into professional highlight reels in 5 minutes. AI-powered editing with automatic moment detection, sport-specific graphics, and recruiter sharing.",
keywords: "sports highlights, video editing, AI editing, athletic recruiting, highlight reel maker, game footage editor",
metadataBase: new URL("https://highlightai.com"),
alternates: {
canonical: "https://highlightai.com",
},
openGraph: {
title: "HighlightAI - Turn Game Clips Into Professional Highlight Reels",
description: "AI-powered sports video editing platform. Transform raw footage into pro-quality highlights in minutes. Perfect for athletes, coaches, and recruiters.",
url: "https://highlightai.com",
siteName: "HighlightAI",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXtSXNp5R1AOCdQElzSFxHBo58/a-sleek-sports-highlight-reel-editing-da-1772750807322-41a26c68.png",
alt: "HighlightAI Dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "HighlightAI - AI Sports Highlight Creator",
description: "Create professional highlight reels from raw game footage in under 5 minutes.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXtSXNp5R1AOCdQElzSFxHBo58/a-sleek-sports-highlight-reel-editing-da-1772750807322-41a26c68.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "HighlightAI", description: "Transform raw game clips into professional highlight reels with AI-powered editing"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -230,7 +230,7 @@ export default function HomePage() {
animationType="entrance-slide"
buttons={[
{ text: "Start Your Free Trial", href: "/signup" },
{ text: "Contact Sales", href: "#" },
{ text: "Talk to a Coach", href: "#" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -272,4 +272,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}