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,73 +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 { Montserrat } 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", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", variable: "--font-geist-mono", subsets: ["latin"],
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "HighlightAI - AI Sports Highlight Reel Creator", title: "HighlightAI", description: "Transform raw game clips into professional highlight reels with AI-powered editing"};
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,
},
};
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} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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