From f71c9fe62d801d2c201fa911b65d754e8f3cbe22 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:16:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f290dcd..e2d7e9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}