Merge version_3 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
||||
logoText="AI ORIGINALS"
|
||||
description="Where artificial intelligence meets premium athletic fashion. Experience the future of apparel design."
|
||||
buttons={[
|
||||
{ text: "Shop Collection", href: "#products" },
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
slides={[
|
||||
@@ -193,4 +193,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user