5 Commits

Author SHA1 Message Date
f5a12123db Update src/app/page.tsx 2026-03-08 12:49:43 +00:00
cdf1bc4508 Merge version_3 into main
Merge version_3 into main
2026-03-08 12:47:53 +00:00
760f819acc Update src/app/page.tsx 2026-03-08 12:47:49 +00:00
1505d202f0 Update src/app/layout.tsx 2026-03-08 12:47:48 +00:00
d52142788e Merge version_2 into main
Merge version_2 into main
2026-03-08 12:45:52 +00:00
2 changed files with 10 additions and 43 deletions

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "AI Originals | Premium AI-Designed Apparel", description: "Experience the future of fashion with AI Originals. Premium sustainable clothing designed by machine learning algorithms for the modern lifestyle.", keywords: "AI fashion, sustainable apparel, tech clothing, smart fabric, premium wear, AI design", metadataBase: new URL("https://aioriginals.com"),
alternates: {
canonical: "https://aioriginals.com"},
openGraph: {
title: "AI Originals | Premium AI-Designed Apparel", description: "Experience the future of fashion with AI Originals. Premium sustainable clothing designed by machine learning algorithms.", url: "https://aioriginals.com", siteName: "AI Originals", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af2itFvsP6CvhsPaV6vdCBdZdS/a-sleek-minimalist-fashion-photo-of-a-pr-1772973198536-d546fc79.png", alt: "AI Originals Premium Collection"},
],
},
twitter: {
card: "summary_large_image", title: "AI Originals | Premium AI-Designed Apparel", description: "The future of fashion starts here. Shop AI-designed sustainable apparel.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af2itFvsP6CvhsPaV6vdCBdZdS/a-sleek-minimalist-fashion-photo-of-a-pr-1772973198536-d546fc79.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,9 +42,9 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="AI ORIGINALS"
description="Where artificial intelligence meets premium athletic fashion. Experience the future of apparel design."
description="Where artificial intelligence meets premium athletic fashion. Limited-time early access collection now available. Experience the future of apparel design."
buttons={[
{ text: "Shop Collection", href: "#products" },
{ text: "Explore Collection", href: "#products" },
{ text: "Learn More", href: "#about" }
]}
slides={[
@@ -193,4 +193,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}