From 435ebac79f0a17f3134f861583581fb1d143df10 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 19:23:49 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b046e18..b72b4f0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -67,7 +67,7 @@ export default function AboutPage() { description: "A powerful rendition showcasing vocal range and emotional performance", imageSrc: - "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", + "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=3", imageAlt: "music album cover vocal performance", button: { text: "Play All Tracks", @@ -79,7 +79,7 @@ export default function AboutPage() { description: "Daniel's unique interpretation of the classic 4 Non Blondes hit", imageSrc: - "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg", + "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg?_wi=3", imageAlt: "musician singing microphone performance", button: { text: "View Playlist", @@ -91,7 +91,7 @@ export default function AboutPage() { description: "Explore Daniel's original songs and unreleased material", imageSrc: - "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg", + "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg?_wi=3", imageAlt: "music composition original songs", button: { text: "Discover More", @@ -120,7 +120,7 @@ export default function AboutPage() { variant: "sparkles-gradient", }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg" + imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg?_wi=2" imageAlt="musician performing on stage professional" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 7ea831b40f761bd566103a0909966d17f15237bd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 19:23:50 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e09db8a..c5dc91d 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -49,7 +49,7 @@ export default function ContactPage() { variant: "sparkles-gradient", }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg" + imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg?_wi=3" imageAlt="musician performing on stage professional" mediaAnimation="slide-up" mediaPosition="right" @@ -66,7 +66,7 @@ export default function ContactPage() { title: "Email", description: "Contact Daniel for inquiries and collaboration opportunities", imageSrc: - "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", + "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=4", imageAlt: "email contact", button: { text: "Send Email", @@ -77,7 +77,7 @@ export default function ContactPage() { title: "Social Media", description: "Follow Daniel on his social media channels for latest updates", imageSrc: - "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg", + "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg?_wi=4", imageAlt: "social media", button: { text: "Follow @ddanielofficial_", @@ -88,7 +88,7 @@ export default function ContactPage() { title: "Booking Inquiries", description: "Professional inquiries for events, performances, and collaborations", imageSrc: - "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg", + "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg?_wi=4", imageAlt: "booking", button: { text: "Book Now", -- 2.49.1 From 5739321b99227962b34f6dc7ba0ad8894e337e56 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 19:23:50 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 44 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..8da622e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,58 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Daniel Azizov - Singer & Performer", + description: "Official website of Daniel Azizov, young singer and Ovoz Bolalar contestant. Listen to music, watch performances, and book tickets for live shows.", + keywords: "Daniel Azizov, singer, Uzbekistan, vocal artist, Ovoz Bolalar, music performances", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Daniel Azizov - Singer & Performer", + description: "Discover the music and performances of Daniel Azizov, a talented young vocalist from Uzbekistan.", + type: "website", + siteName: "Daniel Azizov", + images: [ + { + url: "http://img.b2bpic.net/free-vector/music-festival-background-flat-style_23-2147781208.jpg", + alt: "Daniel Azizov - Stage Performance", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Daniel Azizov - Singer & Performer", + description: "Listen to Daniel's music, watch live performances, and book tickets.", + images: [ + "http://img.b2bpic.net/free-vector/music-festival-background-flat-style_23-2147781208.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +61,9 @@ export default function RootLayout({ return ( - + {children}