Merge version_1 into main #1
@@ -83,7 +83,7 @@ export default function BoysPage() {
|
||||
price: "$24.99",
|
||||
rating: 4.8,
|
||||
reviewCount: "428",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-little-boys-wearing-white-t-shirts-shorts-going-together-holding-hands-summer-park-brothers-walking-outdoor-expressing-positive-emotions_176532-14726.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-little-boys-wearing-white-t-shirts-shorts-going-together-holding-hands-summer-park-brothers-walking-outdoor-expressing-positive-emotions_176532-14726.jpg?_wi=1",
|
||||
imageAlt: "boys signature cotton t-shirt product",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -125,7 +125,7 @@ export default function GirlsPage() {
|
||||
rating: 4.8,
|
||||
reviewCount: "298",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/two-little-boys-wearing-white-t-shirts-shorts-going-together-holding-hands-summer-park-brothers-walking-outdoor-expressing-positive-emotions_176532-14726.jpg",
|
||||
"http://img.b2bpic.net/free-photo/two-little-boys-wearing-white-t-shirts-shorts-going-together-holding-hands-summer-park-brothers-walking-outdoor-expressing-positive-emotions_176532-14726.jpg?_wi=2",
|
||||
imageAlt: "Girls summer romper",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "TinyStyle Kids - Premium Organic Children's Clothing",
|
||||
description: "Shop quality boys and girls clothing collections. Organic cotton, sustainable, comfortable apparel for active kids. 30-day guarantee.",
|
||||
keywords: "kids clothing, children's fashion, boys apparel, girls wear, organic cotton, sustainable kids clothes",
|
||||
metadataBase: new URL("https://tinystylekids.com"),
|
||||
alternates: {
|
||||
canonical: "https://tinystylekids.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "TinyStyle Kids - Quality Children's Fashion",
|
||||
description: "Discover premium clothing for boys and girls made from 100% organic cotton.",
|
||||
siteName: "TinyStyle Kids",
|
||||
type: "website",
|
||||
url: "https://tinystylekids.com",
|
||||
images: [
|
||||
{
|
||||
url: "https://tinystylekids.com/og-image.jpg",
|
||||
alt: "TinyStyle Kids collections",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "TinyStyle Kids - Children's Clothing",
|
||||
description: "Premium quality organic cotton clothing for active kids",
|
||||
images: ["https://tinystylekids.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user