Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -90,7 +90,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-presenting-gift-box-shirt-jacket-looking-gentle-front-view_176474-31500.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-presenting-gift-box-shirt-jacket-looking-gentle-front-view_176474-31500.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
imageAlt="sports trading cards display collection"
|
||||
@@ -128,42 +128,42 @@ export default function HomePage() {
|
||||
id: "baseball",
|
||||
name: "Baseball Cards",
|
||||
price: "Starting at $5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-matches-arrangement-top-view_23-2149419918.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-matches-arrangement-top-view_23-2149419918.jpg?_wi=1",
|
||||
imageAlt: "vintage baseball trading cards collection",
|
||||
},
|
||||
{
|
||||
id: "basketball",
|
||||
name: "Basketball Cards",
|
||||
price: "Starting at $8",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/sport-landing-page-template-with-photo_23-2148368951.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/sport-landing-page-template-with-photo_23-2148368951.jpg?_wi=1",
|
||||
imageAlt: "basketball trading cards collection display",
|
||||
},
|
||||
{
|
||||
id: "football",
|
||||
name: "Football Cards",
|
||||
price: "Starting at $10",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-excited-men-watching-sports-game_329181-19068.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-excited-men-watching-sports-game_329181-19068.jpg?_wi=1",
|
||||
imageAlt: "football trading cards collection display",
|
||||
},
|
||||
{
|
||||
id: "pokemon",
|
||||
name: "Pokémon Cards",
|
||||
price: "Starting at $3",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-tarot-cards-set_52683-109434.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-tarot-cards-set_52683-109434.jpg?_wi=1",
|
||||
imageAlt: "pokémon trading cards booster pack display",
|
||||
},
|
||||
{
|
||||
id: "tcg",
|
||||
name: "Other TCGs",
|
||||
price: "Varies",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-black-blue-white-speck-chocolate-sweets-white-stand_140725-13909.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-black-blue-white-speck-chocolate-sweets-white-stand_140725-13909.jpg?_wi=1",
|
||||
imageAlt: "trading card game collection Yu-Gi-Oh Magic",
|
||||
},
|
||||
{
|
||||
id: "supplies",
|
||||
name: "Supplies & Accessories",
|
||||
price: "Starting at $2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-side-view-young-man-looking-vinyls-store_23-2148237223.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-side-view-young-man-looking-vinyls-store_23-2148237223.jpg?_wi=1",
|
||||
imageAlt: "card sleeves top loaders protective storage",
|
||||
},
|
||||
]}
|
||||
@@ -185,7 +185,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "male collector professional portrait",
|
||||
},
|
||||
{
|
||||
@@ -194,7 +194,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "woman collector pokémon fan portrait",
|
||||
},
|
||||
{
|
||||
@@ -203,7 +203,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "older collector vintage cards portrait",
|
||||
},
|
||||
{
|
||||
@@ -212,7 +212,7 @@ export default function HomePage() {
|
||||
handle: "@breaker_life",
|
||||
testimonial: "Love this place! Great boxes, sealed products, and the staff always gives expert advice. Perfect for both beginners and serious collectors.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-pink-hair-playing-videogame_23-2148969218.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-pink-hair-playing-videogame_23-2148969218.jpg?_wi=1",
|
||||
imageAlt: "young woman enthusiast collector portrait",
|
||||
},
|
||||
]}
|
||||
@@ -227,7 +227,7 @@ export default function HomePage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg?_wi=1"
|
||||
imageAlt="retail shop interior card store layout"
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
|
||||
@@ -124,7 +124,7 @@ export default function ProductsPage() {
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-presenting-gift-box-shirt-jacket-looking-gentle-front-view_176474-31500.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-presenting-gift-box-shirt-jacket-looking-gentle-front-view_176474-31500.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
imageAlt="sports trading cards display collection"
|
||||
@@ -144,42 +144,42 @@ export default function ProductsPage() {
|
||||
id: "baseball",
|
||||
name: "Baseball Cards",
|
||||
price: "Starting at $5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-matches-arrangement-top-view_23-2149419918.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-matches-arrangement-top-view_23-2149419918.jpg?_wi=2",
|
||||
imageAlt: "vintage baseball trading cards collection",
|
||||
},
|
||||
{
|
||||
id: "basketball",
|
||||
name: "Basketball Cards",
|
||||
price: "Starting at $8",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/sport-landing-page-template-with-photo_23-2148368951.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/sport-landing-page-template-with-photo_23-2148368951.jpg?_wi=2",
|
||||
imageAlt: "basketball trading cards collection display",
|
||||
},
|
||||
{
|
||||
id: "football",
|
||||
name: "Football Cards",
|
||||
price: "Starting at $10",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-excited-men-watching-sports-game_329181-19068.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-excited-men-watching-sports-game_329181-19068.jpg?_wi=2",
|
||||
imageAlt: "football trading cards collection display",
|
||||
},
|
||||
{
|
||||
id: "pokemon",
|
||||
name: "Pokémon Cards",
|
||||
price: "Starting at $3",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-tarot-cards-set_52683-109434.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-tarot-cards-set_52683-109434.jpg?_wi=2",
|
||||
imageAlt: "pokémon trading cards booster pack display",
|
||||
},
|
||||
{
|
||||
id: "tcg",
|
||||
name: "Other TCGs",
|
||||
price: "Varies",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-black-blue-white-speck-chocolate-sweets-white-stand_140725-13909.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-black-blue-white-speck-chocolate-sweets-white-stand_140725-13909.jpg?_wi=2",
|
||||
imageAlt: "trading card game collection Yu-Gi-Oh Magic",
|
||||
},
|
||||
{
|
||||
id: "supplies",
|
||||
name: "Supplies & Accessories",
|
||||
price: "Starting at $2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-side-view-young-man-looking-vinyls-store_23-2148237223.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-side-view-young-man-looking-vinyls-store_23-2148237223.jpg?_wi=2",
|
||||
imageAlt: "card sleeves top loaders protective storage",
|
||||
},
|
||||
]}
|
||||
@@ -201,7 +201,7 @@ export default function ProductsPage() {
|
||||
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=3",
|
||||
imageAlt: "male collector professional portrait",
|
||||
},
|
||||
{
|
||||
@@ -210,7 +210,7 @@ export default function ProductsPage() {
|
||||
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=3",
|
||||
imageAlt: "woman collector pokémon fan portrait",
|
||||
},
|
||||
{
|
||||
@@ -219,7 +219,7 @@ export default function ProductsPage() {
|
||||
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=3",
|
||||
imageAlt: "older collector vintage cards portrait",
|
||||
},
|
||||
{
|
||||
@@ -228,7 +228,7 @@ export default function ProductsPage() {
|
||||
handle: "@breaker_life",
|
||||
testimonial: "Love this place! Great boxes, sealed products, and the staff always gives expert advice. Perfect for both beginners and serious collectors.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-pink-hair-playing-videogame_23-2148969218.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-pink-hair-playing-videogame_23-2148969218.jpg?_wi=2",
|
||||
imageAlt: "young woman enthusiast collector portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -125,7 +125,7 @@ export default function VisitPage() {
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
imageAlt="retail shop interior card store layout"
|
||||
@@ -140,7 +140,7 @@ export default function VisitPage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg?_wi=3"
|
||||
imageAlt="retail shop interior card store layout"
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
|
||||
Reference in New Issue
Block a user