Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 17:16:31 +00:00
2 changed files with 11 additions and 48 deletions

View File

@@ -1,59 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
const poppins = Poppins({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Little Steps | Premium Children's Footwear for Growing Feet", description: "Shop comfortable, supportive shoes designed for healthy foot development. Trusted by 50k+ families. First steps to preschool, ages 0-5.", keywords: "children's shoes, toddler footwear, baby shoes, preschool shoes, supportive kids shoes, first walker shoes", metadataBase: new URL("https://littlesteps.com"),
alternates: {
canonical: "https://littlesteps.com"
},
openGraph: {
title: "Little Steps | Premium Children's Footwear", description: "Comfortable, supportive shoes designed for healthy foot development from first steps to preschool.", url: "https://littlesteps.com", siteName: "Little Steps", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/legs-classmates-sitting-playground_1098-3962.jpg", alt: "Little Steps Premium Children's Shoes"
}
]
},
twitter: {
card: "summary_large_image", title: "Little Steps | Premium Children's Footwear", description: "Shop comfortable shoes designed for growing feet. Trusted by families.", images: ["http://img.b2bpic.net/free-photo/legs-classmates-sitting-playground_1098-3962.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Little Steps - Children's Footwear for Growing Feet", description: "Premium children's shoes designed for healthy foot development. Shop comfortable, supportive footwear trusted by families and pediatricians."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -193,8 +193,8 @@ export default function LandingPage() {
<ContactCenter
tag="Newsletter"
tagIcon={Mail}
title="Stay Connected"
description="Subscribe to our newsletter for exclusive offers, parenting tips, and new collection launches delivered straight to your inbox."
title="Get Exclusive 15% Off Your First Purchase"
description="Join our community and receive 15% off your first order plus expert sizing tips to find the perfect fit for your child. Subscribe to our newsletter for exclusive offers, parenting tips, and new collection launches delivered straight to your inbox."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"