Merge version_1 into main #1

Merged
bender merged 7 commits from version_1 into main 2026-03-11 09:47:35 +00:00
7 changed files with 86 additions and 48 deletions

View File

@@ -99,7 +99,7 @@ export default function AboutPage() {
name: "Marcus Chen",
handle: "@legocollector_au",
testimonial: "Finally found the 2013 Off-road Racer in pristine condition. Eric_brick's grading was spot-on and delivery was flawless. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-kitchen_23-2148414934.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-kitchen_23-2148414934.jpg?_wi=2",
imageAlt: "happy male collector LEGO enthusiast portrait",
},
{
@@ -107,7 +107,7 @@ export default function AboutPage() {
name: "Sarah Mitchell",
handle: "@brickarchitect",
testimonial: "The transparency in their condition reports is refreshing. Every detail documented with photos and detailed notes. Professional service.",
imageSrc: "http://img.b2bpic.net/free-photo/female-engineer-helmet-gear-holding-construction-plan-smiling_114579-29578.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-engineer-helmet-gear-holding-construction-plan-smiling_114579-29578.jpg?_wi=2",
imageAlt: "confident female LEGO architect builder portrait",
},
{
@@ -115,7 +115,7 @@ export default function AboutPage() {
name: "James Rodriguez",
handle: "@ninjago_master",
testimonial: "Investment-grade sets that actually hold value. Been tracking my collection's appreciation since purchasing from Eric_brick. Excellent platform.",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6633.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6633.jpg?_wi=2",
imageAlt: "professional man collector LEGO investor portrait",
},
{
@@ -123,7 +123,7 @@ export default function AboutPage() {
name: "Emily Thompson",
handle: "@marvel_brickhead",
testimonial: "Their Avengers Helicarrier was even better than the photos. Perfect condition, arrived securely packed, and they answered all my questions.",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-professional-businesswoman-with-glasses-presentation_23-2148824824.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-professional-businesswoman-with-glasses-presentation_23-2148824824.jpg?_wi=2",
imageAlt: "enthusiastic woman builder LEGO fan portrait",
},
{
@@ -131,7 +131,7 @@ export default function AboutPage() {
name: "David Park",
handle: "@starwars_collector",
testimonial: "Sold my retired collection through Eric_brick and got excellent valuation. Fast payment and professional handling throughout.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-looking-clothes-thrift-shop_23-2150082906.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-looking-clothes-thrift-shop_23-2150082906.jpg?_wi=2",
imageAlt: "Asian man professional collector portrait headshot",
},
{
@@ -139,7 +139,7 @@ export default function AboutPage() {
name: "Lisa Wong",
handle: "@lego_investor",
testimonial: "Tracking my portfolio value through their platform has been game-changing. Real data on retirement dates, piece counts, and market trends.",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg?_wi=2",
imageAlt: "professional woman investor collector portrait",
},
]}

View File

@@ -85,7 +85,7 @@ export default function FaqPage() {
author: "Collector Grade: Perfect",
description: "Factory sealed, never opened. Original manufacturer packaging completely intact with no visible wear, creasing, or damage. Highest investment value.",
tags: ["Perfect", "Sealed", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/yellow-patterned-metal-background_23-2148261989.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/yellow-patterned-metal-background_23-2148261989.jpg?_wi=2",
imageAlt: "MISB condition sealed LEGO box",
},
{
@@ -94,7 +94,7 @@ export default function FaqPage() {
author: "Collector Grade: Excellent",
description: "Box opened but contents never used or displayed. All pieces present, instructions intact. May have minor box wear from storage or handling.",
tags: ["Opened", "Complete", "Excellent"],
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-candy-shapes-like-building-blocks_23-2148691429.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-candy-shapes-like-building-blocks_23-2148691429.jpg?_wi=3",
imageAlt: "NIB condition open but new LEGO set",
},
{
@@ -103,7 +103,7 @@ export default function FaqPage() {
author: "Collector Grade: Very Good",
description: "Set was built once for quality verification. Never placed on display. All pieces accounted for, instructions included. Minor handling marks only.",
tags: ["Built", "Complete", "Very Good"],
imageSrc: "http://img.b2bpic.net/free-photo/science-fiction-scene_456031-69.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/science-fiction-scene_456031-69.jpg?_wi=3",
imageAlt: "Built and stored LEGO collection",
},
{
@@ -112,7 +112,7 @@ export default function FaqPage() {
author: "Collector Grade: Good",
description: "Built and displayed for extended period. Normal dust accumulation and minor fading from light exposure. All pieces present. May show minor shelf wear.",
tags: ["Displayed", "Complete", "Good"],
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg?_wi=4",
imageAlt: "Display worn LEGO set condition",
},
]}

View File

@@ -1,24 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Eric_brick - The Collector's LEGO Vault | Rare & Investment Sets",
description: "Rare LEGO sets with verified condition grading and transparent pricing. Shop retired collectibles, investment-grade builds, and verified authentic LEGO for serious collectors worldwide.",
keywords: "LEGO collector, rare LEGO sets, collectible bricks, investment LEGO, retired sets, LEGO marketplace, authentic LEGO",
metadataBase: new URL("https://eric-brick.com"),
alternates: {
canonical: "https://eric-brick.com",
},
openGraph: {
title: "Eric_brick - The Collector's LEGO Vault",
description: "Rare LEGO sets curated for collectors. Verified condition, transparent grading, worldwide shipping.",
type: "website",
siteName: "Eric_brick",
images: [
{
url: "http://img.b2bpic.net/free-photo/yellow-patterned-metal-background_23-2148261989.jpg",
alt: "Premium LEGO bricks macro photography",
},
],
},
twitter: {
card: "summary_large_image",
title: "Eric_brick - The Collector's LEGO Vault",
description: "Rare LEGO sets with expert grading and worldwide delivery",
images: ["http://img.b2bpic.net/free-photo/yellow-patterned-metal-background_23-2148261989.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -96,7 +96,7 @@ export default function HomePage() {
{ text: "Sell Your Collection", href: "/sell" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/yellow-patterned-metal-background_23-2148261989.jpg"
imageSrc="http://img.b2bpic.net/free-photo/yellow-patterned-metal-background_23-2148261989.jpg?_wi=1"
imageAlt="Macro photography of premium LEGO bricks"
mediaAnimation="slide-up"
imagePosition="right"
@@ -124,7 +124,7 @@ export default function HomePage() {
price: "$850 AUD",
rating: 5,
reviewCount: "12.4k",
imageSrc: "http://img.b2bpic.net/free-photo/science-fiction-scene_456031-69.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/science-fiction-scene_456031-69.jpg?_wi=1",
imageAlt: "LEGO Avengers Helicarrier Set 76153",
},
{
@@ -134,7 +134,7 @@ export default function HomePage() {
price: "$420 AUD",
rating: 5,
reviewCount: "8.9k",
imageSrc: "http://img.b2bpic.net/free-photo/everyday-home-utensils-dark-marble-background_58702-17773.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/everyday-home-utensils-dark-marble-background_58702-17773.jpg?_wi=1",
imageAlt: "LEGO Ninjago Heatwave Lava Dragon Set 71793",
},
{
@@ -144,7 +144,7 @@ export default function HomePage() {
price: "$380 AUD",
rating: 5,
reviewCount: "6.2k",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-candy-shapes-like-building-blocks_23-2148691429.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-candy-shapes-like-building-blocks_23-2148691429.jpg?_wi=1",
imageAlt: "LEGO Icons Alpine Lodge Set 10325",
},
{
@@ -154,7 +154,7 @@ export default function HomePage() {
price: "$650 AUD",
rating: 4,
reviewCount: "9.1k",
imageSrc: "http://img.b2bpic.net/free-photo/christmas-concept-with-boy-playing_23-2147727294.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/christmas-concept-with-boy-playing_23-2147727294.jpg?_wi=1",
imageAlt: "LEGO Technic Off-road Racer Set 42010",
},
]}
@@ -180,7 +180,7 @@ export default function HomePage() {
author: "Engineering & Precision",
description: "Advanced mechanical sets for serious builders. Complex designs with motorized components and detailed engineering.",
tags: ["Engineering", "Complex Builds", "Technical"],
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg?_wi=1",
imageAlt: "LEGO Technic complex motorized building toys",
},
{
@@ -189,7 +189,7 @@ export default function HomePage() {
author: "Superhero Universes",
description: "Licensed superhero sets featuring iconic characters and vehicles from the Marvel Cinematic Universe.",
tags: ["Superheroes", "Licensed", "Display"],
imageSrc: "http://img.b2bpic.net/free-photo/superhero-with-lot-flags-looking-down_1368-9012.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/superhero-with-lot-flags-looking-down_1368-9012.jpg?_wi=1",
imageAlt: "LEGO Marvel superheroes minifigures collection",
},
{
@@ -198,7 +198,7 @@ export default function HomePage() {
author: "Galaxy Far Away",
description: "Iconic starships, characters, and locations from the Star Wars universe. Highly collectible with limited releases.",
tags: ["Star Wars", "Collectible", "Rare"],
imageSrc: "http://img.b2bpic.net/free-photo/view-spaceship-from-future_23-2150675485.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-spaceship-from-future_23-2150675485.jpg?_wi=1",
imageAlt: "LEGO Star Wars starship building set collectible",
},
{
@@ -207,7 +207,7 @@ export default function HomePage() {
author: "Asian Adventure",
description: "Ninja-themed sets with complex builds and collectible minifigures from the Ninjago storyline.",
tags: ["Ninja", "Story-driven", "Dragons"],
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-toys_23-2148144840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-toys_23-2148144840.jpg?_wi=1",
imageAlt: "LEGO Ninjago ninja warrior minifigures collection",
},
]}
@@ -313,7 +313,7 @@ export default function HomePage() {
name: "Marcus Chen",
handle: "@legocollector_au",
testimonial: "Finally found the 2013 Off-road Racer in pristine condition. Eric_brick's grading was spot-on and delivery was flawless. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-kitchen_23-2148414934.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-kitchen_23-2148414934.jpg?_wi=1",
imageAlt: "happy male collector LEGO enthusiast portrait",
},
{
@@ -321,7 +321,7 @@ export default function HomePage() {
name: "Sarah Mitchell",
handle: "@brickarchitect",
testimonial: "The transparency in their condition reports is refreshing. Every detail documented with photos and detailed notes. Professional service.",
imageSrc: "http://img.b2bpic.net/free-photo/female-engineer-helmet-gear-holding-construction-plan-smiling_114579-29578.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-engineer-helmet-gear-holding-construction-plan-smiling_114579-29578.jpg?_wi=1",
imageAlt: "confident female LEGO architect builder portrait",
},
{
@@ -329,7 +329,7 @@ export default function HomePage() {
name: "James Rodriguez",
handle: "@ninjago_master",
testimonial: "Investment-grade sets that actually hold value. Been tracking my collection's appreciation since purchasing from Eric_brick. Excellent platform.",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6633.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6633.jpg?_wi=1",
imageAlt: "professional man collector LEGO investor portrait",
},
{
@@ -337,7 +337,7 @@ export default function HomePage() {
name: "Emily Thompson",
handle: "@marvel_brickhead",
testimonial: "Their Avengers Helicarrier was even better than the photos. Perfect condition, arrived securely packed, and they answered all my questions.",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-professional-businesswoman-with-glasses-presentation_23-2148824824.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-professional-businesswoman-with-glasses-presentation_23-2148824824.jpg?_wi=1",
imageAlt: "enthusiastic woman builder LEGO fan portrait",
},
{
@@ -345,7 +345,7 @@ export default function HomePage() {
name: "David Park",
handle: "@starwars_collector",
testimonial: "Sold my retired collection through Eric_brick and got excellent valuation. Fast payment and professional handling throughout.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-looking-clothes-thrift-shop_23-2150082906.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-looking-clothes-thrift-shop_23-2150082906.jpg?_wi=1",
imageAlt: "Asian man professional collector portrait headshot",
},
{
@@ -353,7 +353,7 @@ export default function HomePage() {
name: "Lisa Wong",
handle: "@lego_investor",
testimonial: "Tracking my portfolio value through their platform has been game-changing. Real data on retirement dates, piece counts, and market trends.",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg?_wi=1",
imageAlt: "professional woman investor collector portrait",
},
]}

View File

@@ -98,7 +98,7 @@ export default function SellPage() {
author: "List Your Sets",
description: "Provide details of the LEGO sets you'd like to sell. Include photos, condition notes, and any special information about rarity or editions.",
tags: ["Easy Form", "Mobile Friendly", "Detailed Tracking"],
imageSrc: "http://img.b2bpic.net/free-photo/smiley-professional-businesswoman-with-glasses-presentation_23-2148824824.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-professional-businesswoman-with-glasses-presentation_23-2148824824.jpg?_wi=3",
imageAlt: "Submit collection step",
},
{
@@ -107,7 +107,7 @@ export default function SellPage() {
author: "Fair Market Value",
description: "Our AFOL experts assess each set using industry grading standards, verification databases, and current market trends. You'll receive itemized valuations within 48 hours.",
tags: ["Expert Review", "Transparent Pricing", "Fast Assessment"],
imageSrc: "http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6633.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6633.jpg?_wi=3",
imageAlt: "Expert appraisal step",
},
{
@@ -116,7 +116,7 @@ export default function SellPage() {
author: "Secure Transfer",
description: "Accept our offer and we'll arrange free priority shipping. We provide prepaid labels and insurance for your protection. Drop off at any carrier location.",
tags: ["Free Shipping", "Insured", "Easy Labels"],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-looking-clothes-thrift-shop_23-2150082906.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-looking-clothes-thrift-shop_23-2150082906.jpg?_wi=3",
imageAlt: "Shipping step",
},
]}

View File

@@ -55,7 +55,7 @@ export default function ShopPage() {
price: "$850 AUD",
rating: 5,
reviewCount: "12.4k",
imageSrc: "http://img.b2bpic.net/free-photo/science-fiction-scene_456031-69.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/science-fiction-scene_456031-69.jpg?_wi=2",
imageAlt: "LEGO Avengers Helicarrier Set 76153",
},
{
@@ -65,7 +65,7 @@ export default function ShopPage() {
price: "$420 AUD",
rating: 5,
reviewCount: "8.9k",
imageSrc: "http://img.b2bpic.net/free-photo/everyday-home-utensils-dark-marble-background_58702-17773.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/everyday-home-utensils-dark-marble-background_58702-17773.jpg?_wi=2",
imageAlt: "LEGO Ninjago Heatwave Lava Dragon Set 71793",
},
{
@@ -75,7 +75,7 @@ export default function ShopPage() {
price: "$380 AUD",
rating: 5,
reviewCount: "6.2k",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-candy-shapes-like-building-blocks_23-2148691429.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-candy-shapes-like-building-blocks_23-2148691429.jpg?_wi=2",
imageAlt: "LEGO Icons Alpine Lodge Set 10325",
},
{
@@ -85,7 +85,7 @@ export default function ShopPage() {
price: "$650 AUD",
rating: 4,
reviewCount: "9.1k",
imageSrc: "http://img.b2bpic.net/free-photo/christmas-concept-with-boy-playing_23-2147727294.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/christmas-concept-with-boy-playing_23-2147727294.jpg?_wi=2",
imageAlt: "LEGO Technic Off-road Racer Set 42010",
},
{
@@ -95,7 +95,7 @@ export default function ShopPage() {
price: "$920 AUD",
rating: 5,
reviewCount: "15.2k",
imageSrc: "http://img.b2bpic.net/free-photo/view-spaceship-from-future_23-2150675485.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-spaceship-from-future_23-2150675485.jpg?_wi=2",
imageAlt: "LEGO Star Wars Millennium Falcon UCS",
},
{
@@ -105,7 +105,7 @@ export default function ShopPage() {
price: "$420 AUD",
rating: 5,
reviewCount: "5.8k",
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg?_wi=2",
imageAlt: "LEGO Creator Expert Grand Piano",
},
{
@@ -115,7 +115,7 @@ export default function ShopPage() {
price: "$680 AUD",
rating: 5,
reviewCount: "11.3k",
imageSrc: "http://img.b2bpic.net/free-photo/superhero-with-lot-flags-looking-down_1368-9012.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/superhero-with-lot-flags-looking-down_1368-9012.jpg?_wi=2",
imageAlt: "LEGO Harry Potter Hogwarts Castle",
},
{
@@ -125,7 +125,7 @@ export default function ShopPage() {
price: "$520 AUD",
rating: 4,
reviewCount: "7.4k",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-toys_23-2148144840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-toys_23-2148144840.jpg?_wi=2",
imageAlt: "LEGO Technic Motorized Excavator",
},
]}

View File

@@ -71,7 +71,7 @@ export default function ThemesPage() {
author: "Engineering & Precision",
description: "Advanced mechanical sets for serious builders. Complex designs with motorized components and detailed engineering.",
tags: ["Engineering", "Complex Builds", "Technical"],
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-repairing-computer-motherboard-wooden-desk_23-2147883755.jpg?_wi=3",
imageAlt: "LEGO Technic complex motorized building toys",
},
{
@@ -80,7 +80,7 @@ export default function ThemesPage() {
author: "Superhero Universes",
description: "Licensed superhero sets featuring iconic characters and vehicles from the Marvel Cinematic Universe.",
tags: ["Superheroes", "Licensed", "Display"],
imageSrc: "http://img.b2bpic.net/free-photo/superhero-with-lot-flags-looking-down_1368-9012.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/superhero-with-lot-flags-looking-down_1368-9012.jpg?_wi=3",
imageAlt: "LEGO Marvel superheroes minifigures collection",
},
{
@@ -89,7 +89,7 @@ export default function ThemesPage() {
author: "Galaxy Far Away",
description: "Iconic starships, characters, and locations from the Star Wars universe. Highly collectible with limited releases.",
tags: ["Star Wars", "Collectible", "Rare"],
imageSrc: "http://img.b2bpic.net/free-photo/view-spaceship-from-future_23-2150675485.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-spaceship-from-future_23-2150675485.jpg?_wi=3",
imageAlt: "LEGO Star Wars starship building set collectible",
},
{
@@ -98,7 +98,7 @@ export default function ThemesPage() {
author: "Asian Adventure",
description: "Ninja-themed sets with complex builds and collectible minifigures from the Ninjago storyline.",
tags: ["Ninja", "Story-driven", "Dragons"],
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-toys_23-2148144840.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-toys_23-2148144840.jpg?_wi=3",
imageAlt: "LEGO Ninjago ninja warrior minifigures collection",
},
]}