diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f245063..77232f9 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -79,7 +79,7 @@ export default function AboutPage() { title="The ASBEST Story" description="Born from the muddy fields and barn parties of rural Netherlands, ASBEST emerged as a force dedicated to preserving and amplifying the authentic spirit of boerenrock. We're not just a band—we're a movement. Our music channels the legacy of Dutch countryside culture through screaming amplifiers and infectious energy. From local festivals to international stages, we bring the unmistakable sound of true boerenrock." tag="Our Journey" - imageSrc="http://img.b2bpic.net/free-photo/guitar-nature_169016-2242.jpg" + imageSrc="http://img.b2bpic.net/free-photo/guitar-nature_169016-2242.jpg?_wi=2" imageAlt="ASBEST band members" useInvertedBackground={false} buttons={[ @@ -105,7 +105,7 @@ export default function AboutPage() { role: "Festival Organizer", company: "Zwarte Cross", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/girl-eating-ice-cream-laughing-portrait-young-woman-sitting-park-sunny-day-eating-icecream-looking-camera-wearing-glasses-enjoying-summer-proposing-camera-summer-lifestyle-concept_197531-30454.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/girl-eating-ice-cream-laughing-portrait-young-woman-sitting-park-sunny-day-eating-icecream-looking-camera-wearing-glasses-enjoying-summer-proposing-camera-summer-lifestyle-concept_197531-30454.jpg?_wi=2", imageAlt: "Dirk van den Berg", }, { @@ -114,7 +114,7 @@ export default function AboutPage() { role: "Band Enthusiast", company: "Gelderland", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-joyful-people-dancing-outdoors_329181-17928.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-joyful-people-dancing-outdoors_329181-17928.jpg?_wi=2", imageAlt: "Maria de Vries", }, { @@ -123,7 +123,7 @@ export default function AboutPage() { role: "Sound Professional", company: "Dutch Festivals", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/women-posing-amusement-park-big-wheel_23-2148737837.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/women-posing-amusement-park-big-wheel_23-2148737837.jpg?_wi=2", imageAlt: "Jelle Hartmann", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..6166d11 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,52 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ASBEST - Dutch Boerenrock Band | Live Shows & Bookings", + description: "ASBEST brings raw, loud Dutch boerenrock energy. Experience festival vibes, screaming guitars, and countryside party atmosphere. Book for festivals, events, and barn parties.", + keywords: "boerenrock, Dutch rock band, ASBEST, festival music, countryside rock, live performances, band booking", + openGraph: { + title: "ASBEST - Boerenrock Band", + description: "Loud energetic Dutch rock from the countryside. Festival vibes and barn party energy.", + type: "website", + siteName: "ASBEST", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-people-playing-together_23-2149223661.jpg", + alt: "ASBEST live performance", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ASBEST - Boerenrock Energy", + description: "Dutch rock band delivering screaming guitars and festival vibes", + images: ["http://img.b2bpic.net/free-photo/medium-shot-people-playing-together_23-2149223661.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +55,9 @@ export default function RootLayout({ return ( - + {children}