From 0cfe32f97c3d4abd836cb12bde4c359f3f0cbee3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 00:23:19 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5044e66..4d2b7a3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -105,7 +105,7 @@ export default function AboutPage() { handle: "@cardcollector_pdx", testimonial: "Best card shop in the Portland area. Owner knows everything about cards and always has fresh inventory. Prices are fair and the community is awesome.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg?_wi=2", imageAlt: "male collector professional portrait", }, { @@ -114,7 +114,7 @@ export default function AboutPage() { handle: "@pokéfan_oregon", testimonial: "Finally found a store that has rare Pokémon singles in stock. The staff is super friendly and helped me find exactly what I was looking for.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-pressing-ringbell_1187-3481.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-pressing-ringbell_1187-3481.jpg?_wi=2", imageAlt: "woman collector pokémon fan portrait", }, { @@ -123,7 +123,7 @@ export default function AboutPage() { handle: "@vintage_card_hunter", testimonial: "Incredible selection of vintage baseball cards. The owner is passionate about the hobby and it shows in the quality of inventory. Highly recommend.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/bearded-grey-haired-elderly-man-dressed-formal-suit_273609-6127.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/bearded-grey-haired-elderly-man-dressed-formal-suit_273609-6127.jpg?_wi=2", imageAlt: "older collector vintage cards portrait", }, ]} From 4384beea4896a69b48f319f2e903fc4a72fb22a6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 00:23:19 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..f120303 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "1 Stop Card Shop - Sports Cards Hillsboro Oregon", + description: "Oregon's premier sports card shop in Hillsboro. Baseball, basketball, football, Pokémon, and supplies. Rated 4.9★ by 600+ collectors. Open daily.", + keywords: "sports cards Hillsboro Oregon, card shop Hillsboro, trading cards Hillsboro OR, Pokémon cards Hillsboro, rare cards Oregon", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "1 Stop Card Shop - Sports Cards Hillsboro Oregon", + description: "Oregon's premier sports card shop. Baseball, basketball, football, Pokémon cards & supplies. Rated 4.9★ by 600+ collectors.", + type: "website", + siteName: "1 Stop Card Shop", + url: "https://1stopcardshop.com", + images: [ + { + url: "https://1stopcardshop.com/og-image.jpg", + alt: "1 Stop Card Shop storefront", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "1 Stop Card Shop - Sports Cards Hillsboro Oregon", + description: "Oregon's premier sports card shop. Baseball, basketball, football, Pokémon cards & supplies. Rated 4.9★ by 600+ collectors.", + images: ["https://1stopcardshop.com/twitter-image.jpg"], + }, + alternates: { + canonical: "https://1stopcardshop.com", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}