From 1505d202f0771fdf709ea2b13de01f188c378934 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:47:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 45297f9..d09b4fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}