Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dcc091255b | |||
| 0ad1107a21 | |||
| 565e86b796 | |||
| 67f3be1295 | |||
| f5a12123db | |||
| cdf1bc4508 | |||
| 760f819acc | |||
| 1505d202f0 | |||
| d52142788e | |||
| d7d4b9c88d |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user