diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 14a3946..b7ab398 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -113,19 +113,19 @@ export default function AboutPage() { id: "1", name: "Sarah Mitchell", role: "Founder & Community Director", - imageSrc: "http://img.b2bpic.net/free-photo/glasses-smiling-arm-horizontal-front_1262-2739.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/glasses-smiling-arm-horizontal-front_1262-2739.jpg?_wi=2", }, { id: "2", name: "Marcus Lee", role: "Upcycling Designer Lead", - imageSrc: "http://img.b2bpic.net/free-photo/glassblower-polishing-grinding-glassware_107420-74259.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/glassblower-polishing-grinding-glassware_107420-74259.jpg?_wi=2", }, { id: "3", name: "Eleanor Johnson", role: "Senior Mentor & Guide", - imageSrc: "http://img.b2bpic.net/free-photo/child-spending-time-with-their-parents_23-2149453363.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/child-spending-time-with-their-parents_23-2149453363.jpg?_wi=2", }, ]} gridVariant="uniform-all-items-equal" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..7308e8f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "The Traveling Thread | Sustainable Fashion & Community Upcycling", + description: "Turn donated clothing into opportunity. Shop sustainable fashion, support intergenerational community programs, and make a real environmental impact.", + keywords: "sustainable fashion, upcycling, community, eco-friendly clothing, thrift, resale, intergenerational", + metadataBase: new URL("https://thetravelingthread.com"), + alternates: { + canonical: "https://thetravelingthread.com", + }, + openGraph: { + title: "The Traveling Thread - Clothing That Gives Back", + description: "Sustainable fashion, upcycled originals, and community impact. Shop our collection and support local programs.", + url: "https://thetravelingthread.com", + siteName: "The Traveling Thread", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/arrangement-colorful-fabric-shelf_23-2148180386.jpg", + alt: "The Traveling Thread - Kids and adults sorting clothing together", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "The Traveling Thread - Clothing That Gives Back", + description: "Sustainable fashion with community heart. Every purchase supports local programs.", + images: ["http://img.b2bpic.net/free-photo/arrangement-colorful-fabric-shelf_23-2148180386.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}