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}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4a2c3b8..4d05317 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -193,8 +193,8 @@ export default function LandingPage() {