10 Commits

Author SHA1 Message Date
dcc091255b Update src/app/page.tsx 2026-03-09 17:35:44 +00:00
0ad1107a21 Merge version_5 into main
Merge version_5 into main
2026-03-08 12:52:01 +00:00
565e86b796 Update src/app/layout.tsx 2026-03-08 12:51:56 +00:00
67f3be1295 Merge version_4 into main
Merge version_4 into main
2026-03-08 12:49:47 +00:00
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
d7d4b9c88d Update src/app/page.tsx 2026-03-08 12:45:47 +00:00
2 changed files with 10 additions and 42 deletions

View File

@@ -1,52 +1,21 @@
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: "AI Originals - Premium AI-Designed Fashion", description: "Experience the future of apparel. AI Originals creates premium athletic fashion designed by machine learning algorithms. Limited-time early access collection available now."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1383,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={[
@@ -152,8 +152,8 @@ export default function LandingPage() {
title="Ready to Experience the Future of Fashion?"
description="Join the AI Originals community and discover apparel designed by the future. Connect with us for exclusive releases, early access, and special offers."
buttons={[
{ text: "Contact Us", href: "mailto:hello@aioriginals.com" },
{ text: "Join Waitlist", href: "#" }
{ text: "Claim Early Access", href: "mailto:hello@aioriginals.com" },
{ text: "Get Exclusive Offer", href: "mailto:hello@aioriginals.com?subject=Exclusive" }
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}